-Removed no longer needed files -Created ipk for quecmanager -Thank you @dr-dolomite for your hard work on this! Co-Authored-By: Russel Yasol <73575327+dr-dolomite@users.noreply.github.com>
11 lines
215 B
SCSS
11 lines
215 B
SCSS
@use "../utilities/initial-variables" as iv;
|
|
|
|
@each $pair in iv.$aspect-ratios {
|
|
$w: nth($pair, 1);
|
|
$h: nth($pair, 2);
|
|
|
|
.#{iv.$helpers-prefix}aspect-ratio-#{$w}by#{$h} {
|
|
aspect-ratio: #{$w} / #{$h};
|
|
}
|
|
}
|