1
0
mirror of https://git.pleroma.social/sjw/pleroma-fe.git synced 2024-11-12 07:29:03 +01:00
pleroma-fe/src/_mixins.scss

18 lines
206 B
SCSS
Raw Normal View History

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