postcss-consistent-space
v1.0.2
Published
Maintain consistent margin and padding space thorough your project
Downloads
3
Maintainers
Readme
PostCSS Consistent Space
Maintain consistent margin and padding spaces thorough your project
.foo {
@space margin 2 3;
}
.foo {
margin: 16px 24px;
}
Usage
No options - fallback 8 pixel grid
postcss([ require('postcss-consistent-space') ])
or with props
postcss([ require('postcss-consistent-space') ])
({
base: 4,
unit: 'em',
}),
See PostCSS docs for examples for your environment.