From adf0b3c4ffb6d8d3636b099d500fef29c8666669 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Jone=C5=A1?= Date: Sun, 2 Aug 2020 00:07:30 +0200 Subject: [PATCH] Fix deprecated elseif syntax --- scss/components/_typography.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2