Files
JS/webseite-sass-js/MATERIAL/bulma/sass/helpers/aspect-ratio.scss
Philippe Torrel ee4d6f0d41
2026-07-06 14:25:41 +02: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};
}
}