diff options
Diffstat (limited to 'assets/scss/_gfx.scss')
-rw-r--r-- | assets/scss/_gfx.scss | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/assets/scss/_gfx.scss b/assets/scss/_gfx.scss index 235aaf4..4f18dd3 100644 --- a/assets/scss/_gfx.scss +++ b/assets/scss/_gfx.scss @@ -1,11 +1,13 @@ +@use "variables"; + body.gfx { - background-color: $bg-gfx-on; + background-color: variables.$bg-gfx-on; > aside { &:hover, &:focus { - background-color: $bg-gfx-on; + background-color: variables.$bg-gfx-on; nav ul li:first-child { - background: $bg-gfx-on; + background: variables.$bg-gfx-on; } } } |