mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00

Why go full-circle with the Sass variables? This way we only need one interface for add-on authors to interact with. It also makes it easier for us to apply additional themes in the future.
11 lines
152 B
SCSS
11 lines
152 B
SCSS
@use "sass/button-mixins" as button;
|
|
|
|
label,
|
|
input[type="radio"],
|
|
input[type="checkbox"] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button {
|
|
@include button.base;
|
|
}
|