anki/ts/sass/button_mixins.scss

9 lines
114 B
SCSS

@mixin disabled {
&[disabled] {
opacity: 0.4;
cursor: not-allowed;
@content;
}
}