gulp-cssbeautify icon indicating copy to clipboard operation
gulp-cssbeautify copied to clipboard

Add bad espace with @media keyword

Open tom-dr opened this issue 1 year ago • 1 comments
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;
    }
}
}

tom-dr avatar Dec 14 '23 23:12 tom-dr

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.

jonkemp avatar Dec 18 '23 14:12 jonkemp