8 lines
94 B
SCSS
8 lines
94 B
SCSS
$lenght: 9;
|
|
|
|
@for $i from 1 through $lenght {
|
|
.opacity-#{$i} {
|
|
opacity: $i * 0.1;
|
|
}
|
|
}
|