From d2dad35f7b332897a7aafecc1b5dcdae7307c3cc Mon Sep 17 00:00:00 2001 From: Martin Underhill Date: Sat, 23 Jan 2021 09:00:39 +0000 Subject: [PATCH] Fixes scrollbar colour in Light Mode --- .changelog | 3 +++ src/scss/components/_page.scss | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.changelog b/.changelog index de575a4f..d4ac2b12 100644 --- a/.changelog +++ b/.changelog @@ -15,6 +15,9 @@ All notable changes to this project will be documented in this file. The format - lightens logo underscore - Changes 'light' Light Mode colour variable to 'lightest' and introduces new 'light' +### Fixes +- Fixes scrollbar colour in Light Mode so that it's dark against the white background instead of white + ---------- diff --git a/src/scss/components/_page.scss b/src/scss/components/_page.scss index f46dab42..0637ea94 100644 --- a/src/scss/components/_page.scss +++ b/src/scss/components/_page.scss @@ -1,8 +1,8 @@ html, body { overflow-x: hidden; - background-color: $colour-primary; - @include dark-mode($background: $colour-dark-mode-primary); + background-color: $colour-primary-light; + @include dark-mode($background: $colour-original); } body {