Files
bulma/sass/helpers/aspect-ratio.scss
Jeremy Thomas 785418143e Build 1.0.3
2024-12-27 21:25:24 +01: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};
}
}