From: Joe Workman Date: Tue, 22 Mar 2022 17:53:53 +0000 (-0700) Subject: fixed dart sass compatibility in typography X-Git-Tag: v2.4.0^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aec65696c63e6375489d2e5fd84fdc1574cde3c;p=thirdparty%2Ffoundation%2Ffoundation-emails.git fixed dart sass compatibility in typography --- diff --git a/scss/components/_typography.scss b/scss/components/_typography.scss index 1470a2be..cc57a178 100755 --- a/scss/components/_typography.scss +++ b/scss/components/_typography.scss @@ -1,6 +1,7 @@ // Foundation for Emails by ZURB // zurb.com/ink/ // Licensed under MIT Open Source +@use "sass:math"; //// /// @group typography @@ -302,11 +303,11 @@ p { } .text-xs { - font-size: $global-font-size / ($font-scale * $font-scale); + font-size: math.div($global-font-size, $font-scale * $font-scale); } .text-sm { - font-size: $global-font-size / $font-scale; + font-size: math.div($global-font-size, $font-scale); } .text-lg {