yandere_fe/src/_mixins.scss

19 lines
204 B
SCSS
Raw Normal View History

2022-01-19 18:18:02 -08:00
@mixin unfocused-style {
@content;
2023-01-09 10:02:16 -08:00
&:focus:not(:focus-visible, :hover) {
2022-01-19 18:18:02 -08:00
@content;
}
}
@mixin focused-style {
2023-01-09 10:02:16 -08:00
&:hover,
&:focus {
2022-01-19 18:18:02 -08:00
@content;
}
&:focus-visible {
@content;
}
}