braindrops.nicwands.com/shared/styles/_functions.scss
2026-07-17 11:24:36 -04:00

7 lines
149 B
SCSS

@use "sass:math";
@function rs($pixels, $base-vw: 1600px) {
$vw-value: math.div($pixels * 100vw, $base-vw);
@return max($vw-value, $pixels);
}