1.0.2 • Published 8 years ago
postcss-consistent-space v1.0.2
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.