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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| /*
| ==================
| Total Sales
| ==================
| */
|
| .widget-two {
| position: relative;
| background: $m-color_10;
| padding: 0;
| border-radius: 8px;
| height: 100%;
|
| .widget-content {
| font-size: 17px;
| }
|
| .w-chart {
| position: absolute;
| bottom: 0;
| bottom: 0;
| right: 0;
| left: 0;
| }
|
| .w-numeric-value {
| display: flex;
| color: $white;
| font-weight: 500;
| padding: 20px;
| justify-content: space-between;
|
| .w-icon {
| display: inline-block;
| background: $warning;
| padding: 13px 12px;
| border-radius: 50%;
| display: inline-flex;
| align-self: center;
| height: 45px;
| width: 45px;
| }
|
| svg {
| display: block;
| color: $m-color_10;
| width: 20px;
| height: 20px;
| }
|
| .w-value {
| font-size: 19px;
| display: block;
| color: $m-color_3;
| font-weight: 700;
| margin-bottom: -9px;
| }
|
| .w-numeric-title {
| font-size: 13px;
| color: $m-color_6;
| font-weight: 600;
| }
| }
| }
|
|