pleroma-fe/src/_mixins.scss

18 lines
204 B
SCSS
Raw Normal View History

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