@@ -0,0 +1,7 @@
+@use 'sass:math';
+
+$baseWidth: 1920;
+@function pxToVw($px) {
+ @return #{math.div($px, $baseWidth) * 100}+ vw;
+}