mirror of
https://git.pleroma.social/sjw/pleroma-fe.git
synced 2024-11-12 07:29:03 +01:00
18 lines
206 B
SCSS
18 lines
206 B
SCSS
|
@mixin unfocused-style {
|
||
|
@content;
|
||
|
|
||
|
&:focus:not(:focus-visible):not(:hover) {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin focused-style {
|
||
|
&:hover, &:focus {
|
||
|
@content;
|
||
|
}
|
||
|
|
||
|
&:focus-visible {
|
||
|
@content;
|
||
|
}
|
||
|
}
|