mike douges

Results 267 comments of mike douges

Thanks for raising this! Would you be interested in contributing a fix? Could be fun to dip your toes in.

Thanks for raising! Yeah this would be a tricky one. Could we order it to be always defined property?

Tangent thought: Explicit disabling of composition/conditional CSS. It means when baked we can simplify it down to something tiny.

This works for getting around `:first-child` problems: https://codesandbox.io/s/ssr-first-child-mitigation-7bmsj?file=/src/App.js ```diff +> style:first-child + *, > :first-child { background-color: blue; } ``` Now it's just a matter of figuring out `nth-child` -...

`:nth-child` workaround could be just a suggestion to code in data attributes. ``` :nth-child(2n) { background-color: gray; } // highlight // highlight ``` ``` [data-highlight] { background-color: gray; } //...

hi jess! yep but you need to opt into the SSR extraction stuff aka "advanced ssr" - instead of that we'll be extracting to CSS files as the "advanced" setup...

oh that's such a good point!

love your work @TxHawks, thanks! like you said everything has its trade-offs, we will have to keep this in mind. another alternative i can think of that wouldn't need a...

Extracted single atomic sheet is what we are aiming for for the final destination in app, but for the intermediate state ensuring a workable 0 config story is something we...

Cheers will do 🙂 cc @pgmanutd had some good discussion today ^ On Tue, 6 Oct 2020, 6:28 pm Jonathan Pollak, wrote: > Feature queries (@supports blocks) also come to...