Files
remark42/web/app/components/comment/_level/comment_level.scss
T

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;
}
}
}
}
}
}