Releases: smashercosmo/postcss-responsive-hints
Releases · smashercosmo/postcss-responsive-hints
v1.0.0
v0.2.1
- Fixed: incorrect check for responsiveValues length
v0.2.0
New features
Comment syntax is now opt-in
By default you'll be writing responsive hints, using no-comment
syntax. Like this:
.text {
padding: 10px | 20px | x | 30px;
}
If you don't want to use non-standard syntax you need to set 'comments'
option to 'true'. After that you can write you hints like this:
.text {
padding: 10px /* | 20px | x | 30px | */;
}
Initial Release
v0.1.0 Initial commit