schemeDetails.less 562 Bytes
Newer Older
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 26 27
.detailContent {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;

  :global {
    .ant-page-heade {
      padding: 0;
    }
  }

  .header {
    display: flex;
    justify-content: right;
    margin-bottom: 10px;
    padding-right: 25px;
  }

  .configContent {
    flex: 1;
    overflow-y: scroll;
    padding: 5px;
邓超's avatar
邓超 committed
28 29 30 31 32 33 34 35

    .ant-tabs {
      height: calc(100% - 150px);

      .ant-tabs-content-holder {
        overflow-y: scroll;
      }
    }
36 37
  }
}