king
2020-03-19 607b5dc4059be1843b6c0f670b93f107fc263375
src/tabviews/tabmanage/index.scss
@@ -12,16 +12,47 @@
  }
  .tab-list {
    padding-top: 20px;
    margin-left: -10px;
    margin-right: -10px;
    .ant-col {
      padding: 0 10px 20px;
      padding: 0 10px 30px;
    }
    .tab-card {
      .ant-card-body {
        padding: 0;
        position: relative;
        padding: 20px 0;
        img {
          max-width: 100%;
        }
        .tab-operation {
          position: absolute;
          top: -10px;
          right: 10px;
          opacity: 0;
          transition: all 0.1s linear;
          button {
            margin-left: 10px;
          }
        }
      }
    }
    .tab-card:hover {
      .ant-card-body {
        .tab-operation {
          top: 10px;
          opacity: 1;
        }
      }
    }
  }
  .ant-empty {
    margin: 25vh 0;
  }
  > .ant-spin {
    position: fixed;
    z-index: 10;
    left: calc(50vw - 22px);
    top: calc(50vh - 70px);
  }
}