_apexcharts.scss 581 字节
Newer Older
C
codecalm 已提交
1
.apexcharts-title-text {
C
codecalm 已提交
2
  font-weight: $font-weight-bold !important;
C
codecalm 已提交
3 4 5
}

.apexcharts-tooltip-title {
C
codecalm 已提交
6
  font-weight: $font-weight-bold !important;
C
codecalm 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
  padding-bottom: .25rem !important;
}

.apexcharts-tooltip {
  line-height: 1;
  color: #fff;
  background: $dark !important;
  border: 0 !important;
  border-radius: 3px !important;
}

.apexcharts-tooltip-title {
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.apexcharts-tooltip-series-group {
  padding: 0 8px !important;
}

.apexcharts-tooltip-marker {
  width: .5rem;
  height: .5rem;
C
codecalm 已提交
31
}