pleroma-fe/src/_mixins.scss

19 lines
204 B
SCSS
Raw Normal View History

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