From: Vishwa Jay Date: Sat, 18 May 2019 16:21:28 +0000 (-0600) Subject: Added footer-color option (#2480) X-Git-Tag: 0.7.5~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f74b0781c7b5c3aa07fbddc8784603b29585e78e;p=thirdparty%2Fbulma.git 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 --- 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