K
K
Kuper1322017-10-06 01:40:46
css
Kuper132, 2017-10-06 01:40:46

How to make code smaller with stylus?

.guitar-slider  input[name='radiost']:nth-of-type(2)
      &:checked ~
        .radius-button-component
          .control-slide2
            .control__indicator
              &:after
                display block
                width 22px
                height 22px
                border-radius 10px
                background #4933f1

.guitar-slider  input[name='radiost']:nth-of-type(3)
  &:checked ~
    .radius-button-component
      .control-slide3
        .control__indicator
          &:after
            display block
            width 22px
            height 22px
            border-radius 10px
            background #4933f1

In this code, input styling can be reduced? Tried with a comma, didn't work

Answer the question

In order to leave comments, you need to log in

1 answer(s)
O
Oleg, 2017-10-06
@werty1001

for val in 2..3
   .guitar-slider input[name='radiost']:nth-of-type({val}):checked ~ .radius-button-component .control-slide{val}
    .control__indicator
      &:after
        display block
        width 22px
        height 22px
        border-radius 10px
        background #4933f1

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question