index.less 891 Bytes
Newer Older
1
@import "~antd/lib/style/themes/default.less";
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.chartCard {
  position: relative;
  .meta {
    color: @text-color-secondary;
    font-size: @font-size-base;
    position: relative;
    line-height: 22px;
    height: 22px;
  }
  .action {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
  }
  .total {
19 20 21 22
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
23
    color: @heading-color;
niko's avatar
niko committed
24
    margin-top: 4px;
afc163's avatar
afc163 committed
25
    margin-bottom: 0;
26 27 28 29 30
    font-size: 30px;
    line-height: 38px;
    height: 38px;
  }
  .content {
nikogu's avatar
nikogu committed
31
    margin-bottom: 12px;
32 33 34 35 36 37 38 39 40 41 42
    position: relative;
    width: 100%;
  }
  .contentFixed {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .footer {
    border-top: 1px solid @border-color-split;
afc163's avatar
afc163 committed
43
    padding-top: 9px;
nikogu's avatar
nikogu committed
44
    margin-top: 8px;
45 46 47 48 49
    & > * {
      position: relative;
    }
  }
}