gulp-cssbeautify
gulp-cssbeautify copied to clipboard
Add bad espace with @media keyword
trafficstars
With code
@supports not (inset: 10px) {
.articles-wrapper.grid {
margin: 0 0 5rem 0;
}
@media screen and (min-width: 750px) {
.articles-wrapper.grid {
margin-bottom: 7rem;
}
}
}
Be beautifyed like this
@supports not (inset: 10px) {
.articles-wrapper.grid {
margin: 0 0 5rem 0;
}
@ media screen and (min-width: 750px) {
.articles-wrapper.grid {
margin-bottom: 7rem;
}
}
}
The cssbeautify package hasn't been updated in 10 years and this plugin is just putting your code through that package. So I don't expect it's going to be updated any time so there is not an easy fix here outside of finding an alternative.