1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| /*
| =====================
| Unique Visitors
| =====================
| */
|
| .widget {
| &.widget-chart-three {
| background: $m-color_10;
|
| .widget-heading {
| display: flex;
| justify-content: space-between;
| border-bottom: 1px dashed $dark;
| padding: 20px 20px;
| margin-bottom: 0;
| padding-bottom: 20px;
|
| h5 {
| font-size: 17px;
| display: block;
| color: $m-color_3;
| margin-bottom: 0;
| }
|
| .dropdown {
| align-self: center;
|
| a svg {
| color: $m-color_6;
| width: 19px;
| height: 19px;
| }
|
| .dropdown-menu {
| padding: 8px 8px;
| min-width: 10rem;
| border-radius: 6px;
| top: 5px !important;
| }
| }
| }
|
| .apexcharts-legend-marker {
| left: -5px !important;
| }
| }
| }
|
|