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 4003a1e commit 1a91d09Copy full SHA for 1a91d09
tailwind.config.ts
@@ -110,14 +110,15 @@ const config = {
110
plugins: [
111
require("tailwindcss-animate"),
112
plugin(function ({ matchVariant }) {
113
- // The :not() pseudo-class. `i.e. not-[&:disabled]`
+ // The :not() pseudo-class. `i.e. not-[:checked]`
114
matchVariant(
115
"not",
116
(value) => {
117
return `&:not(${value})`
118
},
119
{
120
values: {
121
+ // not-disabled => ":not(:disabled)"
122
disabled: ":disabled",
123
124
}
0 commit comments