I'd like my @media blocks to have a newline after the brace, so I've set atblock_pre to {\n in the config file (pasted below), but when I run it, the @media blocks come out like this:
@media screen and (max-width:1130px) {.header-logo {
margin-top: 20px;
}
There should be a newline and four spaces before .header-logo. It looks like atblock_pre is ignored, and it always just puts a single brace.
Also, I've compared the output between a config file that defines atblock_pre and atblock_post and one that doesn't, and the output files were identical. It seems those two options are completely ignored.
Config file:
{
"selector_comma": ",\n",
"indent": " ",
"atblock_pre": "{\n "
}
I'd like my @media blocks to have a newline after the brace, so I've set
atblock_preto{\nin the config file (pasted below), but when I run it, the @media blocks come out like this:There should be a newline and four spaces before
.header-logo. It looks likeatblock_preis ignored, and it always just puts a single brace.Also, I've compared the output between a config file that defines atblock_pre and atblock_post and one that doesn't, and the output files were identical. It seems those two options are completely ignored.
Config file: