diff options
author | misstickles <misstickles@users.noreply.github.com> | 2021-05-17 04:06:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 11:06:02 +0800 |
commit | fa2847555a44cf25ebe64efd4dc3708bd93f17cc (patch) | |
tree | 2c1e0e991eb9a78541d6509ef713304faa84db8c /_sass/yat | |
parent | 4be2813565e8489cb52ff1c275f2f7b8b56c794f (diff) |
fix: footer/menu popup colours (#33)
* Fix footer/menu popup colours
* fix: correct the footer background colour
When the body content is less, the footer background colour should be transparent.
Co-authored-by: JT <jeffreytse.mail@gmail.com>
Diffstat (limited to '_sass/yat')
-rw-r--r-- | _sass/yat/_layout.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_sass/yat/_layout.scss b/_sass/yat/_layout.scss index 7c56e80..682d73d 100644 --- a/_sass/yat/_layout.scss +++ b/_sass/yat/_layout.scss @@ -23,7 +23,7 @@ html { @include media-query($on-laptop) { .page-link { - color: unset; + color: $header-text-color; } .menu-icon { @@ -36,6 +36,7 @@ html { } footer.site-footer { + color: unset; background-color: transparent; .site-footer-inner { |