7d2ec8ed65
If I've missed any, follow-up PRs would be most appreciated. Closes #2557
24 lines
436 B
SCSS
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;
|
|
}
|