Skip to content
Marie-Louise edited this page Jan 25, 2019 · 5 revisions

To run compiler

npm run watch:sass

Ampersand

ampersand

Using & with pseudo classes

in sass this is written 👇

.button {
  &:visited { }
  &:hover { }
  &:active { }
}

in css this compiles as👇

.button:visited { }
.button:hover { }
.button:active { }

Clone this wiki locally