main
scss 33 lines 536 Bytes
Raw
1 .apexcharts-canvas {
2 .apexcharts-toolbar {
3 z-index: 2;
4
5 .apexcharts-menu-item {
6 color: #000;
7 }
8 }
9 }
10
11 .apexcharts-tooltip {
12 backdrop-filter: blur(3px);
13 box-shadow:
14 0px 5px 10px -5px rgba(0, 0, 0, 0.2),
15 0px 5px 20px 0px rgba(0, 0, 0, 0.2) !important;
16
17 &.apexcharts-theme-dark {
18 background: rgba(0, 0, 0, 0.5) !important;
19 }
20
21 &.apexcharts-theme-light {
22 background: rgba(255, 255, 255, 0.5) !important;
23 }
24 }
25
26 .direction-rtl {
27 .apexcharts-legend {
28 direction: ltr;
29 }
30 .apexcharts-title-text {
31 direction: ltr;
32 }
33 }