index.less 678 Bytes
Newer Older
1 2 3 4 5
@import '~antd/lib/style/themes/default.less';

.listContent {
  .description {
    max-width: 720px;
6
    line-height: 22px;
7 8 9
  }
  .extra {
    margin-top: 16px;
10
    color: @text-color-secondary;
11 12 13 14
    line-height: 22px;
    & > :global(.ant-avatar) {
      position: relative;
      top: 1px;
15 16 17 18
      width: 20px;
      height: 20px;
      margin-right: 8px;
      vertical-align: top;
19 20
    }
    & > em {
21
      margin-left: 16px;
22 23 24 25 26 27 28 29 30 31 32 33
      color: @disabled-color;
      font-style: normal;
    }
  }
}

@media screen and (max-width: @screen-xs) {
  .listContent {
    .extra {
      & > em {
        display: block;
        margin-top: 8px;
34
        margin-left: 0;
35 36 37 38
      }
    }
  }
}