Files
2026-05-31 17:35:41 -05:00

13 lines
263 B
SCSS

@use "sass:list";
@use "../utilities/initial-variables" as iv;
@each $pair in iv.$aspect-ratios {
$w: list.nth($pair, 1);
$h: list.nth($pair, 2);
.#{iv.$class-prefix}#{iv.$helpers-prefix}aspect-ratio-#{$w}by#{$h} {
aspect-ratio: #{$w} / #{$h};
}
}