postcss-utilities
Advanced tools
Comparing version 0.6.0 to 0.6.1
# Change Log | ||
# v0.6.1 | ||
- Fix [Position utility bug](https://github.com/ismamz/postcss-utilities/issues/8) | ||
# v0.6.0 | ||
@@ -4,0 +8,0 @@ |
@@ -31,6 +31,22 @@ /** | ||
if (values[0] !== 'null') { | ||
decls.push({ | ||
prop: all, | ||
value: values[0] | ||
}); | ||
if (pre === '' && suf === '') { | ||
decls.push({ | ||
prop: top, | ||
value: values[0] | ||
}, { | ||
prop: right, | ||
value: values[0] | ||
}, { | ||
prop: bottom, | ||
value: values[0] | ||
}, { | ||
prop: left, | ||
value: values[0] | ||
}); | ||
} else { | ||
decls.push({ | ||
prop: all, | ||
value: values[0] | ||
}); | ||
} | ||
@@ -37,0 +53,0 @@ return decls; |
{ | ||
"name": "postcss-utilities", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77634
2539