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

Issue [Please include CSS in bug report]

TylerPottsDev opened this issue · comments

Hi, I would just like to say I have this issue where after I compile my sass to css and then try to tidy it up using css-clean it removes random letters, numbers and syntax and breaks my code.

Any fix for this?

If you post your CSS I will have a context for what broke it.

I think I got the same Issue, maybe its the space, you got this:

    .cta-bar-button th{
        //color: #FFF;
        padding-top: 10px;
    }

And after the css-clean:

  .cta-bar-button t {
        // color: #FFF;
    padding-top     : 10px;
  }

Also, I see that the commented lines doesnt get aligned, example:

.cta-bar-button t {
        // color: #FFF;
    display         : block;

I am closing the issue as there is not enough evidence to solve it.