Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/huyb1991/hugo-lamp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHuy Nguyen <huyb.1991@gmail.com>2020-07-01 17:52:53 +0300
committerHuy Nguyen <huyb.1991@gmail.com>2020-07-01 17:52:53 +0300
commit4d26f7c670027a981362a3e84f8107762aa3096f (patch)
treeb3d80b1d1781bc1b61449884234d87fbb59980fe
parent72198afa31a9d57e213e2fecc8d5f434ad59a1e1 (diff)
Apply css variable color to themev1.2.0
-rw-r--r--styles/base/_base.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/styles/base/_base.scss b/styles/base/_base.scss
index 30c4dee..e5ff5e1 100644
--- a/styles/base/_base.scss
+++ b/styles/base/_base.scss
@@ -4,7 +4,7 @@ body {
line-height: 1.618;
font-family: $family-sans-serif;
color: $text;
- background: $main-background;
+ background-color: var(--main-bg-color);
text-rendering: optimizeLegibility;
-webkit-overflow-scrolling: touch; // Smoothly on mobile browser
}