quanyawei
2023-10-18 e86b3edfe6d0cad7d744828a65ca1330e84fdcde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.preserve-white-spaces-mixin(@enabled) when(@enabled=true) {
  // 搜索框与表格
  @sf-and-st-white-spacing: @layout-gutter * 2;
 
  nz-sf + simple-table {
    margin-top: @sf-and-st-white-spacing;
  }
 
  // 按钮间间距
  @button-and-button-white-spacing: @layout-gutter;
 
  .ant-btn + .ant-btn,
  .ant-btn + nz-popconfirm,
  nz-popconfirm + .ant-btn,
  nz-popconfirm + nz-popconfirm {
    margin-left: @button-and-button-white-spacing;
  }
  .ant-btn-group {
    .ant-btn + .ant-btn {
      margin-left: -1px;
    }
  }
}
 
.preserve-white-spaces-mixin(@preserve-white-spaces-enabled);