Skip to content

Commit

Permalink
feat: add not-disabled modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed May 22, 2023
1 parent 415afeb commit 9b509a2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/tailwind-parse/src/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ impl<'a> Expression<'a> {
"focus-visible" => ":focus-visible",
"active" => ":active",
"disabled" => ":disabled",
"not-disabled" => ":not(:disabled)",
"all" => "*",
"all-child" => "> *",
"sibling" => "~ *",
Expand Down

0 comments on commit 9b509a2

Please sign in to comment.