anki/ts/sass/button_mixins.scss
Henrik Giesel b696635afc Style light mode button bar with borders
- whereas night mode toolbar has no visible borders
2021-04-15 13:09:50 +02:00

11 lines
177 B
SCSS

@mixin light-hover-active {
border-color: var(--faint-border) !important;
&:hover,
&:focus,
&:active,
&.active {
background-color: #e3e3e8;
}
}