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
Can not flag a style to be applied with using css selectors in the base style
css selectors
import React from 'react'; import outline from 'react-outline' import { Styles } from 'react-outline' let styles = { base : { title:{ base:{ color:"blue" }, ":hover":{ color:"green", fontWeight:"bold" }, error:{ color:"red" } } } } styles = outline(styles); const Title = styles.title`p` export default <div> <Styles/> <Title>basic</Title> <Title error>error</Title> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Can not flag a style to be applied with using
css selectors
in the base styleThe text was updated successfully, but these errors were encountered: