anki/sass/core.scss
Damien Elmes 7d2ec8ed65 Only disable specific animations/transitions/shadows
If I've missed any, follow-up PRs would be most appreciated.

Closes #2557
2023-07-02 20:02:14 +10:00

24 lines
436 B
SCSS

/* Copyright: Ankitects Pty Ltd and contributors
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
@use "vars";
* {
box-sizing: border-box;
}
body {
color: var(--fg);
background: var(--canvas);
margin: 1em;
&.fancy {
transition: opacity var(--transition-medium) ease-out;
}
overscroll-behavior: none;
}
a {
color: var(--fg-link);
text-decoration: none;
}