From 4bb0d3994f630a6111f18ab6a1a2e9a9a83d2a98 Mon Sep 17 00:00:00 2001 From: James Date: Thu, 14 Jul 2022 15:27:17 -0700 Subject: [PATCH] fix: bug with base colors --- src/admin/scss/app.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/admin/scss/app.scss b/src/admin/scss/app.scss index 4a2443e05..3db0a521a 100644 --- a/src/admin/scss/app.scss +++ b/src/admin/scss/app.scss @@ -11,9 +11,9 @@ --z-modal: #{$z-modal}; --scrollbar-width: 17px; - --theme-bg: var(--theme-base-0); - --theme-input-bg: var(--theme-base-0); - --theme-text: var(--theme-base-800); + --theme-bg: var(--theme-elevation-0); + --theme-input-bg: var(--theme-elevation-0); + --theme-text: var(--theme-elevation-800); --font-body: 'Suisse Intl', system-ui; --font-mono: monospace; @@ -66,6 +66,12 @@ html { } } +html, +body, +#app { + height: 100%; +} + body { font-family: var(--font-body); font-weight: 400;