main.scss 114 B

1234567
  1. @use 'sass:math';
  2. $baseWidth: 1920;
  3. @function pxToVw($px) {
  4. @return #{math.div($px, $baseWidth) * 100}+ vw;
  5. }