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