summaryrefslogtreecommitdiff
path: root/src/components/Root.module.scss
diff options
context:
space:
mode:
authorHaishan <[email protected]>2018-12-04 23:39:26 +0800
committerHaishan <[email protected]>2018-12-07 00:19:49 +0800
commit3584ff617966af35ddd0fd45ef2df7cdfb8f5071 (patch)
tree83f4f535d1fd3ca1c85807a1c2b397cf9b6733c5 /src/components/Root.module.scss
parenta265c62020d4dd3a4e57e5ad0894794461dd8385 (diff)
feat: initial theming support
Diffstat (limited to 'src/components/Root.module.scss')
-rw-r--r--src/components/Root.module.scss5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Root.module.scss b/src/components/Root.module.scss
index e4a0e87..5ecd02e 100644
--- a/src/components/Root.module.scss
+++ b/src/components/Root.module.scss
@@ -1,8 +1,8 @@
.app {
display: flex;
- color: #ddd;
- background: #202020;
+ background: var(--color-background);
+ color: var(--color-text);
min-height: 300px;
height: 100vh;
}
@@ -10,6 +10,7 @@
.content {
flex-grow: 1;
overflow: scroll;
+ // background: #202020;
// $w: 7px;
// &::-webkit-scrollbar {