From 0aec65696c63e6375489d2e5fd84fdc1574cde3c Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 22 Mar 2022 10:53:53 -0700 Subject: [PATCH] fixed dart sass compatibility in typography --- scss/components/_typography.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 { -- 2.47.2