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
It works:
const MyComp = styled('div')({ border: [2, 'solid', 'white'], });
This does not work:
const MyComp = styled('div')({ border: ({ children }) => !children && [2, 'solid', 'white'], });
Works:
const MyComp = styled('div')({ border: ({ children }) => !children && ['2px', 'solid', 'white'].join(' '), });
The text was updated successfully, but these errors were encountered:
Thanks for this issue!
It looks like a bug with JSS, see cssinjs/jss#497
Sorry, something went wrong.
No branches or pull requests
It works:
This does not work:
Works:
The text was updated successfully, but these errors were encountered: