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
| /*
| ==================
| Balance
| ==================
| */
|
| .widget-account-invoice-two {
| padding: 22px 19px;
| background: $warning;
| background: linear-gradient(to left, #6b7764 0%, #2f384f 100%);
|
| .account-box {
| .info {
| display: flex;
| justify-content: space-between;
| margin-bottom: 84px;
| }
|
| h5 {
| color: $m-color_3;
| margin-bottom: 0;
| font-size: 17px;
| font-weight: 600;
| }
|
| p {
| color: $m-color_3;
| font-weight: 700;
| margin-bottom: 0;
| align-self: center;
| }
|
| .acc-action {
| margin-top: 23px;
| display: flex;
| justify-content: space-between;
|
| a {
| display: inline-block;
| padding: 8px;
| border-radius: 6px;
| color: $m-color_3;
| font-weight: 600;
| box-shadow: 0px 0px 2px 0px $m-color_4;
|
| &:first-child {
| margin-right: 2px;
| }
|
| svg {
| width: 18px;
| height: 18px;
| }
| }
| }
| }
| }
|
|