From f74b0781c7b5c3aa07fbddc8784603b29585e78e Mon Sep 17 00:00:00 2001 From: Vishwa Jay Date: Sat, 18 May 2019 10:21:28 -0600 Subject: [PATCH] Added footer-color option (#2480) * Added foreground (e.g., text) color to the footer While setting up my own site, I was surprised to find that this wasn't an option! * Added @if statement for footer color * Added the option for footer-color * Corrected indentation of lines for footer-color --- sass/layout/footer.sass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sass/layout/footer.sass b/sass/layout/footer.sass index 1988153d5..4287f7949 100644 --- a/sass/layout/footer.sass +++ b/sass/layout/footer.sass @@ -1,6 +1,9 @@ $footer-background-color: $white-bis !default +$footer-color: false !default $footer-padding: 3rem 1.5rem 6rem !default .footer background-color: $footer-background-color padding: $footer-padding + @if $footer-color + color: $footer-color -- 2.47.2