From: Jan Joneš Date: Sat, 1 Aug 2020 22:07:30 +0000 (+0200) Subject: Fix deprecated elseif syntax X-Git-Tag: v2.4.0~4^2~4^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1014%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Fix deprecated elseif syntax --- diff --git a/scss/components/_typography.scss b/scss/components/_typography.scss index 55731ef0..61b65b7f 100755 --- a/scss/components/_typography.scss +++ b/scss/components/_typography.scss @@ -177,7 +177,7 @@ $remove-ios-blue: true !default; padding-bottom: $margin; @if $align == 'left' { text-align: left; - } @elseif $align == 'right' { + } @else if $align == 'right' { text-align: right; } @else { text-align: center;