Skip to content

sebastiandedeyne/postcss-assign

Repository files navigation

PostCSS Include Selector Build Status

PostCSS plugin Less-like class mixins for PostCSS.

.color-white {
    color: white;
}

.background-red {
    background-color: red;
}

.alert--danger {
    @assign .background-red, .color-white;
}
.color-white {
    color: white;
}

.background-red {
}

.alert--danger {
    color: white;
    background-color: red;
}

Usage

postcss([ require('postcss-assign') ])

See PostCSS docs for examples for your environment.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published