Replies: 1 comment
-
Hey! You'll have to use the https://tailwindcss.com/docs/using-with-preprocessors#stylus No plans to make changes to Tailwind itself to support specific preprocessors unfortunately, we really recommend just using PostCSS: https://tailwindcss.com/docs/using-with-preprocessors#using-post-css-as-your-preprocessor |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In Stylus if the input is
The output will be
The CSS syntax identifiers can contain only the characters [_-a-zA-Z0-9],the
/
will be parsed as an arithmetic operator.w-1
is ident,/
is literal, so I got an error output.Suggest supporting an alias, like w-1_4.
Beta Was this translation helpful? Give feedback.
All reactions