Skip to content

Repository files navigation

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;
}
}
}
@mixinbtn .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;
}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

5 watching

Forks

Releases

Packages

Contributors

Languages