SeanJM / atom-css-clean

A plugin for Atom which sorts and aligns CSS and SASS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@content is removed

SkelegonDK opened this issue · comments

Hi again Sean, doing some mixins I discovered that css-clean removes @content from my mixins.
it turns this:

@else if $point == phablet {
    @media only screen
      and (min-device-width: 414px)
      and (max-device-width: 736px)
      and (-webkit-min-device-pixel-ratio : 3)
      and (orientation: portrait) { @content}
  }

into this:

@else if $point == phablet {
    @media
          only screen
      and (min-device-width               : 414px)
      and (max-device-width               : 736px)
      and (-webkit-min-device-pixel-ratio : 3)
      and (orientation                    : portrait) {
    }
  }

best regards Manuel