Open pdclark opened 14 years ago
Putting comments inside of an @variables block will break all following variables. eg:
@variables color { test1:#00a4e4; /* Light Blue */ test2:#042260; } #header { color: color.test1; background-color: color.test2; }
Outputs:
#header { color: #00a4e4; background-color: color.test2; }
Hrm yeah. Ill have to strip the comments from the variable blocks before I parse them. Nice catch.
Putting comments inside of an @variables block will break all following variables. eg:
Outputs: