We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f3d19 commit b38e4d9Copy full SHA for b38e4d9
src/index.js
@@ -136,7 +136,8 @@ function createRule(className) {
136
if (className.includes('!important')) {
137
[className, important] = className.split("!");
138
important = '!' + important;
139
- importantSuffix = '\\' + important;
+ importantSuffix = parseValue(important);
140
+ important = '!important';
141
}
142
let res = className.split(":");
143
let property = res[0];
0 commit comments