Anki/ts/graphs/graphs-base.scss
Matthias Metelka 87db774412 Apply CSS variables from Python side
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.
2022-10-23 12:59:05 +02:00

11 lines
152 B
SCSS

@use "sass/button-mixins" as button;
label,
input[type="radio"],
input[type="checkbox"] {
cursor: pointer;
}
button {
@include button.base;
}