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
Need ideas on how to make main.css be used as a lib without copying the entire file
main.css
The text was updated successfully, but these errors were encountered:
Hello 👋 , I’m new here as a contributor to this project.
Tailwind preset file could be good solution. You can move utility classes into a separate global.css file:
global.css
@layer components { .btn { @apply ...; } .btn-primary { @apply ...; } }
or hosting main.css on a CDN.
Sorry, something went wrong.
Hello 👋 , I’m new here as a contributor to this project. Tailwind preset file could be good solution. You can move utility classes into a separate global.css file: @layer components { .btn { @apply ...; } .btn-primary { @apply ...; } } or hosting main.css on a CDN.
@layer components { .btn { @apply ...; } .btn-primary { @apply ...; } } or hosting main.css on a CDN.
@jcbbb what do u think of this?
No branches or pull requests
Need ideas on how to make
main.css
be used as a lib without copying the entire fileThe text was updated successfully, but these errors were encountered: