From 1cfbb01a3af62a061da5fd96f38c29bf20809ee9 Mon Sep 17 00:00:00 2001 From: Lipis Date: Thu, 25 Nov 2021 12:16:12 +0200 Subject: [PATCH] Don't use math in sass (#892) --- sass/_flag-icons-base.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sass/_flag-icons-base.scss b/sass/_flag-icons-base.scss index 56243610..521faad2 100644 --- a/sass/_flag-icons-base.scss +++ b/sass/_flag-icons-base.scss @@ -1,5 +1,3 @@ -@use 'sass:math'; - .flag-icon-background { background-size: contain; background-position: 50%; @@ -10,7 +8,7 @@ @extend .flag-icon-background; position: relative; display: inline-block; - width: math.div(4, 3) * 1em; + width: 1.333333 * 1em; line-height: 1em; &:before { content: '\00a0';