Skip to content
This repository was archived by the owner on Jan 20, 2020. It is now read-only.

Latest commit

 

History

History
37 lines (27 loc) · 923 Bytes

File metadata and controls

37 lines (27 loc) · 923 Bytes

postcss-important-startstop Build Status

PostCSS plugin which adds !important based on an atRule

Why should I use Important?

This plugin is useful for a Utility-based approach to CSS.

You need some more Info about Utility-based CSS? See these links. I can highly recommend the article by Adam.

Examples

Input

.a { color: red; }

@important {
    .b { color: red; }
}

.c {
    @important {
      color: red;
    }
    background-color: green;
}