From d33c842dc07892c2bd42618e75d6d7630f7fe821 Mon Sep 17 00:00:00 2001 From: Daniel Wurzer Date: Tue, 25 Feb 2025 11:09:33 +0100 Subject: [PATCH] fix: calc parentheses --- sass/components/_typography.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/components/_typography.scss b/sass/components/_typography.scss index 5496926f4c..c669a72804 100644 --- a/sass/components/_typography.scss +++ b/sass/components/_typography.scss @@ -49,7 +49,7 @@ small { font-size: 75%; } .flow-text{ $i: 0; @while $i <= $intervals { - @media only screen and (min-width : 360 + ($i * $interval-size)) { + @media only screen and (min-width : (360 + ($i * $interval-size))) { font-size: 1.2rem * (1 + (.02 * $i)); } $i: $i + 1;