Anki/sass/core.scss
Matthias Metelka f2d5abb95d Improve categorization of global colors
by renaming almost all of them and sorting them into separate maps.
2022-08-29 15:43:02 +02:00

21 lines
412 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-default);
background: var(--canvas-default);
margin: 1em;
transition: opacity 0.5s ease-out;
overscroll-behavior: none;
}
a {
color: var(--accent-link);
text-decoration: none;
}