index.less 867 Bytes
Newer Older
1 2 3 4 5
@root-entry-name: 'default';
@import '~antd/es/style/themes/index.less';
@tree-custom-prefix-cls: ~'@{ant-prefix}-empirical-curve';

.@{tree-custom-prefix-cls} {
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  .@{ant-prefix}-modal-body {
    height: 650px;
    .@{ant-prefix}-spin-nested-loading{
      height: 100%;
      .@{ant-prefix}-spin-container{
        height: 100%;
      }
    }
  }

  
  &-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  &-header {
    flex: none;

    &-list {
      display: flex;
      align-items: center;
      width: 100%;

      &:last-of-type {
        margin-top: 10px;
      }
    }

    &-item {
      margin-right: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      .@{ant-prefix}-select {
        width: 160px;
      }
    }
  }

  &-content {
    flex: 1;
    overflow: hidden;
  }
52
}