16 lines
265 B
SCSS
Executable File
16 lines
265 B
SCSS
Executable File
@use "sass:meta";
|
|
|
|
$columns: 54;
|
|
|
|
@mixin icon_size {
|
|
@for $i from 1 through $columns {
|
|
.icon-#{$i} {
|
|
height: #{$i}px !important;
|
|
width: #{$i}px !important;
|
|
line-height: #{$i + 8}px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include icon_size;
|