Blame view

node_modules/less/test/css/mixins-nested.css 187 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  .class .inner {
    height: 300;
  }
  .class .inner .innest {
    width: 30;
    border-width: 60;
  }
  .class2 .inner {
    height: 600;
  }
  .class2 .inner .innest {
    width: 60;
    border-width: 120;
  }