index.less 761 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
@import "~antd/lib/style/themes/default.less";
@import "../../../utils/utils.less";

.radar {
  .legend {
    margin-top: 16px;
    .legendItem {
      position: relative;
      text-align: center;
      p {
        cursor: pointer;
      }
      h6 {
        color: @heading-color;
niko's avatar
niko committed
15
        padding-left: 16px;
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
        font-size: 24px;
        line-height: 32px;
        margin-top: 2px;
      }
      .split {
        background-color: @border-color-split;
        position: absolute;
        top: 8px;
        right: 0;
        height: 40px;
        width: 1px;
      }
    }
    .dot {
      border-radius: 8px;
      display: inline-block;
      margin-right: 8px;
      position: relative;
      top: -1px;
      height: 8px;
      width: 8px;
    }
  }
}