Skip to content

Commit

Permalink
Fixes scrollbar colour in Light Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tempertemper committed Jan 23, 2021
1 parent 96b1f98 commit d2dad35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog
Expand Up @@ -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

----------


Expand Down
4 changes: 2 additions & 2 deletions 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 {
Expand Down

0 comments on commit d2dad35

Please sign in to comment.