index.less 824 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
@import "~antd/lib/style/themes/default.less";
@import "../../../utils/utils.less";

.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 {
    .textOverflow();
    color: @heading-color;
niko's avatar
niko committed
22
    margin-top: 4px;
23 24 25 26 27
    font-size: 30px;
    line-height: 38px;
    height: 38px;
  }
  .content {
nikogu's avatar
nikogu committed
28
    margin-bottom: 12px;
29 30 31 32 33 34 35 36 37 38 39
    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
40
    padding-top: 9px;
nikogu's avatar
nikogu committed
41
    margin-top: 8px;
42 43 44 45 46
    & > * {
      position: relative;
    }
  }
}