Skip to content

Releases: master-co/normal.css

v3.0.2

08 May 02:06
26d90f8
Compare
Choose a tag to compare

Bug Fixes

v3.0.1

08 May 02:04
Compare
Choose a tag to compare

Bug Fixes

v3.0.0

02 May 16:10
Compare
Choose a tag to compare

New Features

  • Add @layer base to lower the precedence for all rules @1aron 0b9fe9a

    <v3.0.0

    *, ::before, ::after {
        box-sizing: border-box;
    }
    ...

    latest

    @layer base {
        *, ::before, ::after {
            box-sizing: border-box;
        }
        ...
    }

    Any styles not in a layer are gathered together and placed into a single anonymous layer that comes after all the declared layers, named and anonymous. This means that any styles declared outside of a layer will override styles declared in a layer, regardless of specificity.

    Therefore, we can use @layer base to make the preset styles have low precedence in all anonymous layer rules to prevent custom styles from being overwritten.

v2.1.1

12 Mar 16:17
Compare
Choose a tag to compare

Performance Upgrades

v2.1.0

12 Mar 12:38
Compare
Choose a tag to compare

New Features

  • Consistent code styles @1aron 7345d6b

    pre,
    code,
    kbd,
    samp {
        font-size: 1em;
    }

v2.0.0

04 Mar 05:00
Compare
Choose a tag to compare

Separate from the Master CSS project and released stable v2 🎉