10 lines
134 B
SCSS
10 lines
134 B
SCSS
@import 'common/variables';
|
|
|
|
.comment_level {
|
|
@for $i from 1 through 5 {
|
|
&_#{$i} {
|
|
margin-left: $i * $offset;
|
|
}
|
|
}
|
|
}
|