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 3543250 commit a25af69Copy full SHA for a25af69
seed_styles/src/style.rs
@@ -801,6 +801,7 @@ pub enum Pseudo {
801
FirstLine,
802
FirstOfType,
803
Focus,
804
+ FocusVisible,
805
FocusWithin,
806
Hover,
807
InRange,
@@ -844,6 +845,7 @@ impl Pseudo {
844
845
Pseudo::FirstLine => "::first-line".to_string(),
846
Pseudo::FirstOfType => ":first-of-type".to_string(),
847
Pseudo::Focus => ":focus".to_string(),
848
+ Pseudo::FocusVisible => ":focus-visible".to_string(),
849
Pseudo::FocusWithin => ":focus-within".to_string(),
850
Pseudo::Hover => ":hover".to_string(),
851
Pseudo::InRange => ":in-range".to_string(),
0 commit comments