Width, height percentage class helpers added.

This commit is contained in:
mustafahlvc 2017-07-31 16:32:29 +03:00
parent 5ca5400ba7
commit fb2dcc0653

View File

@ -13,6 +13,16 @@
max-#{$prop}: $length !important; max-#{$prop}: $length !important;
} }
} }
// Percentage
@for $i from 0 through 20 {
$i-p: 5 * $i;
$size-p: 5% * $i;
.#{$abbrev}-#{$i-p}-p {
#{$prop}: $size-p !important;
}
}
} }
// ###################### // ######################