1
0
mirror of https://github.com/tabler/tabler.git synced 2026-06-19 22:00:05 +04:00
Files
tabler/core/scss/utils/_opacity.scss
T

8 lines
151 B
SCSS

// stylelint-disable declaration-no-important
@for $i from 0 through 20 {
.opacity-#{$i * 5} {
opacity: calc(#{$i * 5} / 100) !important;
}
}