18 lines
348 B
SCSS
18 lines
348 B
SCSS
$step: 24px;
|
|
|
|
@for $i from 1 through 5 {
|
|
.comment_level {
|
|
&_#{$i} {
|
|
padding-left: $i * $step;
|
|
|
|
&.comment_replying {
|
|
.comment__input {
|
|
@media (-moz-touch-enabled: 1) and (max-width: 768px), (pointer: coarse) and (max-width: 768px) {
|
|
margin-left: -$i * $step;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|