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
According to the docs, vocs comes with built-in support for tailwindcss by adding @import "tailwindcss" into style.css.
vocs
@import "tailwindcss"
style.css
So when attaching a tailwind class mb-6 to <h2 />, we would expect it to overwrite the margin: 0 in css reset.
mb-6
<h2 />
margin: 0
However actual result:
<h2 /> is always rendering as margin: 0.
Possible solution:
use replace all globalStyle with style instead and assign them into base layer
globalStyle
style
base
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to the docs,
vocs
comes with built-in support for tailwindcss by adding@import "tailwindcss"
intostyle.css
.So when attaching a tailwind class
mb-6
to<h2 />
, we would expect it to overwrite themargin: 0
in css reset.However actual result:
<h2 />
is always rendering asmargin: 0
.Possible solution:
use replace all
globalStyle
withstyle
instead and assign them intobase
layerThe text was updated successfully, but these errors were encountered: