// Will not work in SCSS
div {
font-size:clamp(1.1rem, 0.7153px+1.6368vw, 1.5px);
}
In SCSS you need to wrap calculations in calc() function
// Will work
div {
font-size:clamp(1.1rem, calc(0.7153px+1.6368vw), 1.5px);
}
In SCSS you need to wrap calculations in calc() function
Leave a Reply