pleroma-fe/src/_mixins.scss

18 行
206 B
SCSS
Raw 通常表示 履歴

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