npm.io
0.8.1 • Published 5 years ago

postcss-merge-grid-template

Licence
MIT
Version
0.8.1
Deps
0
Size
9 kB
Vulns
0
Weekly
0

PostCSS Merge Grid Template Build Status

PostCSS plugin to reduce grid templates declarations.

#page {
    display: grid;
    width: 100%;
    height: 250px;
    grid-template-areas: "head head"
                         "nav  main"
                         "nav  foot";
    grid-template-rows: 50px 1fr 30px;
    grid-template-columns: 150px 1fr;
}
#page {
    display: grid;
    width: 100%;
    height: 250px;
    grid-template: "a a" 50px "b c" 1fr "b d" 30px / 150px 1fr;
}

Status: EXPERIMENTAL

This plugin is still under development and does not currently cover all the possible places where zone identifiers can hide. That means it is likely to break your code by renaming half of the identifiers. Use it only if you know what you are doing.

Usage

postcss([ require('postcss-merge-grid-template') ])

See PostCSS docs for examples for your environment.

Keywords