We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce
render () { return ( <div> <dl className="foo"> <style jsx>{` .foo { color: red; } .foo p { color: green; } .foo p + p { color: blue; } `} </style> red<p>green</p><p>blue</p> </dl> </div> ) }
Preact (Working)
Preact
React via vercel/next.js@cae706d (Not working)
React
Also sometime hot reload refuse to process CSS (all appear no colour just black) and will need full refresh. Is it a bug? Thanks.
The text was updated successfully, but these errors were encountered:
@rauchg Thanks. It's work now but maybe it's not cover this case?
// Bar.js export default () => <div> <dd className='bar'> red<p>green</p><p>blue</p> </dd> </div>;
// Foo.js import React from 'react' import Bar from './Bar' export default Foo => { return ( <div> <dl className="foo"> <style jsx>{` .foo { color: red; } .foo p { color: green; } .foo p + p { color: blue; } `} </style> red<p>green</p><p>blue</p> { [0,1,2].map(item => <Bar key={item}/>) } </dl> </div> ) };
Expected
But get
Do tell me if I need to open new issue.
Thanks
Sorry, something went wrong.
@katopz that'a bit different issue, see #42
No branches or pull requests
To reproduce
Preact
(Working)React
via vercel/next.js@cae706d (Not working)Also sometime hot reload refuse to process CSS (all appear no colour just black) and will need full refresh.
Is it a bug? Thanks.
The text was updated successfully, but these errors were encountered: