diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-20 04:15:58 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-20 04:17:05 -0500 |
commit | 4334596d4bebc9a76f5ca8400813847eef5b3bb7 (patch) | |
tree | 4bd2229fd48715bcf4ae96bc3d070b7f3c29aa58 /src/scss/home.scss | |
parent | add lang column to user (diff) | |
download | xssbook2-4334596d4bebc9a76f5ca8400813847eef5b3bb7.tar.gz xssbook2-4334596d4bebc9a76f5ca8400813847eef5b3bb7.tar.bz2 xssbook2-4334596d4bebc9a76f5ca8400813847eef5b3bb7.zip |
rework styles with scss
Diffstat (limited to '')
-rw-r--r-- | src/scss/home.scss (renamed from src/public/css/home.css) | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/public/css/home.css b/src/scss/home.scss index 40e1063..e490f55 100644 --- a/src/public/css/home.css +++ b/src/scss/home.scss @@ -1,3 +1,6 @@ +@import "./variables"; +@import "./mixins"; + #main-content { display: flex; flex-direction: column; @@ -16,6 +19,6 @@ height: 10rem; flex-grow: 1; background-color: transparent; - color: var(--text); - font-family: var(--font); + color: $text; + font-family: $font; } |