diff options
Diffstat (limited to 'src/ui/theme.js')
| -rw-r--r-- | src/ui/theme.js | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/ui/theme.js b/src/ui/theme.js index 372cd46..58c8397 100644 --- a/src/ui/theme.js +++ b/src/ui/theme.js @@ -1,11 +1,19 @@ import css from './css'; css` +html { + font-size: 11px; + margin: 0; + padding: 0; +} + body { --theme-backdrop: #1e1e1e; --theme-fg: #eeeeee; --theme-note-bg: #eeeeee; --theme-note-fg: #363636; + --theme-note-bg-trans: rgba(238,238,238,0); + --theme-note-fg-trans: rgba(54,54,54,0); --theme-header-fg: #121212; } @@ -13,6 +21,8 @@ body.darktheme { --theme-backdrop: #1e1e1e; --theme-note-bg: #363636; --theme-note-fg: #eeeeee; + --theme-note-bg-trans: rgba(54,54,54,0); + --theme-note-fg-trans: rgba(238,238,238,0); --theme-header-fg: #121212; } @@ -20,7 +30,16 @@ body { color: var(--theme-fg); background: var(--theme-backdrop); font-family: sans-serif; - font-size: 11px; + + margin: 0; + padding: 0; + width: 100vw; + height: 100vh; + overflow: hidden; + + display: flex; + flex-direction: column; + justify-content: space-around; } `; |
