Derek
Derek
After playing around with this more and reading some of the other issues, I tested without nesting any flex containers and the percentage height works fine. It's as soon as...
So I was using `flex: 1 0 auto` and changed it to `height: 100%` and it fixed it. All I wanted was a `flex-direction: column` with 2 `` inside. I...
@jpdevries yes it's still broken in Chrome. That codepen is just a workaround. In the `.boxes` style, comment out `width: 100%`, `height: 100%`, and uncomment `flex: 1 0 auto`. You...
@tshinnic :+1:
I'm having this exact same issue with `Next.js` and `react-jss`. I was able to partially fix it by using `babel-plugin-add-react-displayname` (https://www.npmjs.com/package/babel-plugin-add-react-displayname) and adding it to `.bablerc`. However, it only fixed...
Okay, this is solved for me. It turns out that the shortcut for React fragments doesn't work. So I had to ultimately make 2 changes to fix this problem: 1....