Blame view

node_modules/less/test/less-bom/modifyVars/extended.less 246 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
  #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;