pixsy/node_modules/less/test/less-bom/modifyVars/extended.less

11 lines
246 B
Plaintext
Raw Normal View History

2017-12-22 17:22:08 +00:00
#header {
color: (@base-color * 3);
border-left: @the-border;
border-right: (@the-border * 2);
}
#footer {
color: (@base-color + #003300);
border-color: @red;
}
@red: blue; // var is overridden by the modifyVars
//@base-color: green;