From 4f358f0e3a7dc1f7300710811ef37e8fd0378c49 Mon Sep 17 00:00:00 2001 From: Bob Maerten Date: Fri, 30 Apr 2021 09:49:27 +0200 Subject: [PATCH] Fix else if deprecation warning Closes #1059 --- 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 1b023b62..b14cf322 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; - } @else if $align == 'right' { + } @elseif $align == 'right' { text-align: right; } @else { text-align: center; -- 2.47.2