CoverCardList.less 721 Bytes
Newer Older
1 2 3 4
@import "~antd/lib/style/themes/default.less";
@import "../../utils/utils.less";

.coverCardList {
nikogu's avatar
nikogu committed
5
  margin-bottom: -24px;
6
  :global {
afc163's avatar
afc163 committed
7 8 9 10 11 12
    .ant-card-meta-title > a {
      color: @heading-color;
    }
    .ant-card:hover .ant-card-meta-title > a {
      color: @primary-color;
    }
13
    .ant-card-meta-description {
14
      color: @text-color-secondary;
afc163's avatar
afc163 committed
15 16 17
      height: 44px;
      line-height: 22px;
      overflow: hidden;
18 19 20 21
    }
  }
  .cardItemContent {
    display: flex;
nikogu's avatar
nikogu committed
22
    margin-top: 12px;
23 24
    line-height: 20px;
    height: 20px;
nikogu's avatar
nikogu committed
25
    & > span {
niko's avatar
niko committed
26
      color: @text-color-secondary;
27 28 29 30 31 32 33
      flex: 1;
      font-size: 12px;
    }
    .avatarList {
      flex: 0 1 auto;
    }
  }
nikogu's avatar
nikogu committed
34 35 36
  .cardList {
    margin-top: 24px;
  }
37
}