If my application.css.sass has no extra space in custom css like:
/*
*= require_self
*= require_tree .
*/
.locale {
float: right;
margin: -0.25em 0.1em;
}
I have the usual error: Invalid CSS after "right": expected expression (e.g. 1px, bold), was ";"
But if I add an extra space or more, I don't get the CSS error but the style is not added:
/*
*= require_self
*= require_tree .
*/
.locale {
float: right;
margin: -0.25em 0.1em;
}
With the rest of my custom scss I don't have this problem. I have other applications without this problem.