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.
!p-4
1 parent 19a2340 commit 378ca4fCopy full SHA for 378ca4f
tests/sortClassList.test.js
@@ -11,6 +11,10 @@ it.each([
11
// Utilities with variants
12
['px-3 focus:hover:p-3 hover:p-1 py-3', 'px-3 py-3 hover:p-1 focus:hover:p-3'],
13
14
+ // Utitlies with important
15
+ ['px-3 !py-4', 'px-3 !py-4'],
16
+ ['!py-4 px-3', '!py-4 px-3'],
17
+
18
// Components with variants
19
['hover:container container', 'container hover:container'],
20
@@ -45,6 +49,10 @@ it.each([
45
49
'tw-px-3 tw-py-3 hover:tw-p-1 focus:hover:tw-p-3',
46
50
],
47
51
52
53
+ ['tw-px-3 !tw-py-4', 'tw-px-3 !tw-py-4'],
54
+ ['!tw-py-4 tw-px-3', '!tw-py-4 tw-px-3'],
55
48
56
57
['hover:tw-container tw-container', 'tw-container hover:tw-container'],
58
0 commit comments