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
The Important Prefix doesn't seem to be working for me in Vue CLI.
For example, p-2 works as expected.
p-2
When using <div class="!p-2"> the class has no affect.
<div class="!p-2">
When using @apply !p-2; I receive a Syntax Error: SassError: expected ";"
@apply !p-2;
Syntax Error: SassError: expected ";"
My setup:
"dependencies": { "core-js": "^3.6.5", "vue": "^2.6.11", "vue-horizontal": "^0.8.10", "vue-router": "^3.2.0", }, "devDependencies": { "@vue/cli-plugin-babel": "~4.5.0", "@vue/cli-plugin-eslint": "~4.5.0", "@vue/cli-plugin-router": "~4.5.0", "@vue/cli-service": "~4.5.0", "@windicss/plugin-question-mark": "^0.1.1", "@windicss/plugin-scrollbar": "^1.2.3", "babel-eslint": "^10.1.0", "eslint": "^6.7.2", "eslint-plugin-vue": "^6.2.2", "sass": "^1.26.5", "sass-loader": "^10", "vue-cli-plugin-windicss": "^1.0.4", "vue-template-compiler": "^2.6.11" },
The text was updated successfully, but these errors were encountered:
Hey @sambedingfield
Thanks for the issue. Can you see if this is still an issue with [email protected] for <div class="!p-2"> ?
[email protected]
The ! in the sass is a little tricky because the scss validation doesn't like it. Not sure if there's a solution available for that for now
!
Sorry, something went wrong.
No branches or pull requests
The Important Prefix doesn't seem to be working for me in Vue CLI.
For example,
p-2
works as expected.When using
<div class="!p-2">
the class has no affect.When using
@apply !p-2;
I receive aSyntax Error: SassError: expected ";"
My setup:
The text was updated successfully, but these errors were encountered: