compass-sass icon indicating copy to clipboard operation
compass-sass copied to clipboard

scss not compiling correctly

Open dnajd opened this issue 11 years ago • 0 comments

I have this plugin setup with the defaults and compiling, but once my css gets a certain length it starts cutting things off.

This....

header {
    background-color:green;

    h1 {
        color:white;
        font-weight:bold;
        text-transform:uppercase;
        padding:10px 0;
    }

}

#main{
    padding-top:30px;
    min-height:300px;
    background-color:#eeeeee;
}

body.welcome {
    div.post {
        border: 1px dashed black;
        background-color: #eeeeee;
        margin-bottom:10px;
        padding:20px;
    }

}

turns into this....

header {
  background-color: green;
}
header h1 {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 0;
}

#main {
  padding-top: 30px;
  min-height: 300px;
  background-color: #eeeeee;
}

body.welcome div.post {
  border: 1px dashed black;
  background-color: #eeeeee;
  margin-bottom: 10px;

notice the padding isn't there and the bottom bracket is missing. If I switch everything around in terms of order, it doesn't matter.. it just cuts off the last few lines. Even if I change the styles to something completely mundane.

Any ideas on how I can even see if an error is happening?

dnajd avatar Aug 03 '13 04:08 dnajd