From 810df92a6195a871049c54030b05023fd1660d46 Mon Sep 17 00:00:00 2001 From: Lucas Vallenet Date: Wed, 4 Jan 2023 14:41:25 +0100 Subject: [PATCH] Fix functions.scss error --- assets/styles/tools/_functions.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/styles/tools/_functions.scss b/assets/styles/tools/_functions.scss index 1c45669..0ec0de8 100644 --- a/assets/styles/tools/_functions.scss +++ b/assets/styles/tools/_functions.scss @@ -184,5 +184,5 @@ $context: 'frontend' !default; * @return {Number} - Clamped font size based on breakpoint */ @function responsive-type($min-size, $max-size, $breakpoint) { - @return clamp($min-size, calc(#{strip-unit($max-size)}/#{strip-unit(#{$breakpoint}) * 100vw), $max-size); + @return clamp($min-size, calc(#{strip-unit($max-size)}/#{strip-unit(#{$breakpoint})} * 100vw), $max-size); }