D
D
Denis2016-03-06 13:24:45
Sass
Denis, 2016-03-06 13:24:45

How to translate from SASS to CSS?

#sidebartoggler {
  display:none {
    &:checked + .page-wrap {
      .slidebar {
        left:0 {}
      }
    }
  }
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Ukolov, 2016-03-06
@alexey-m-ukolov

The code you provided cannot be translated, because it is complete heresy.
Apparently it should be something like this:

#sidebartoggler {
  display:none;
}

#sidebartoggler:checked + .page-wrap .slidebar {
  left:0;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question