SeanJM / atom-css-clean

A plugin for Atom which sorts and aligns CSS and SASS
MIT License
20 stars 2 forks source link

css clean breaks Bootstrap4 SCSS media queries mixin #41

Closed Levdbas closed 3 years ago

Levdbas commented 6 years ago

Hi,

Thank you for your awesome plugin! It really makes my SCSS better to read! in the current release atom-css-clean does the following to Bootstrap 4 media queries:

Before:

.test{ @include media-breakpoint-up(md){ width: 40%; } }

After:

.test { @include media-breakpoint-up(md); width : 40%; } And thus the media query mixin doesn't work anymore.