mirror of
https://github.com/ankitects/anki.git
synced 2025-11-10 06:37:12 -05:00
23 lines
488 B
SCSS
23 lines
488 B
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
@use 'vars';
|
|
@use 'buttons';
|
|
|
|
body {
|
|
margin: 2em;
|
|
color: vars.$day-text-fg;
|
|
|
|
// currently this is injected via webview.py to try to match the
|
|
// system background color
|
|
// background: vars.$day-window-bg;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
body.nightMode {
|
|
color: vars.$night-text-fg;
|
|
background: vars.$night-window-bg;
|
|
}
|