bulma/sass/helpers/aspect-ratio.scss

13 lines
244 B
SCSS
Raw Normal View History

2024-11-11 10:22:12 +00:00
@use "sass:list";
2024-03-21 16:11:54 +00:00
@use "../utilities/initial-variables" as iv;
@each $pair in iv.$aspect-ratios {
2024-11-11 10:22:12 +00:00
$w: list.nth($pair, 1);
$h: list.nth($pair, 2);
2024-03-21 16:11:54 +00:00
.#{iv.$helpers-prefix}aspect-ratio-#{$w}by#{$h} {
aspect-ratio: #{$w} / #{$h};
}
}