Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 554 Bytes

README.md

File metadata and controls

46 lines (38 loc) · 554 Bytes

postcss-sample

Run:

yarn start

src/index.postcss

@define-mixin btn $name {
  $(name) {
    &.after, &::after {
      color: red;
      @mixin-content;
    }

    &:focus, &.focus {
      color: green;
    }

    &.active, &:active {
      color: blue;
    }

  }
}

@mixin btn .btn-bar {
    font-size: 12px;
}

dist/style.css

.btn-bar.after, .btn-bar::after {
    color: red;
    font-size: 12px;
}
.btn-bar:focus, .btn-bar.focus {
    color: green;
}
.btn-bar.active, .btn-bar:active {
    color: blue;
}