Is there a way to create fluid font size using the css calc() function in React without running into errors when mixing vw and px units?
font-size: calc(14px + (26px - 14px)) * ((100vw - 300px) / (1600 - 300));
I encountered an error where SASS was unable to compile 100vw - 300px.
What would be the most effective solution to resolve this issue?