mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 06:07:11 -05:00
8 lines
114 B
SCSS
8 lines
114 B
SCSS
@mixin disabled {
|
|
&[disabled] {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
|
|
@content;
|
|
}
|
|
}
|