Up until reading Flexbox Adventures I hadn’t really given much thought to how flexbox grow exactly works. If you do want to know:
Available space = (Container size – Flex-basis siblings total).
Flex Item size = Basis + ((Available space / Total Grow nums) * Individual grow num).
A recommended read.
When working with flexbox, I always find myself ending up at A Complete Guide To Flexbox