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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| /*
| ==================
| Transaction
| ==================
| */
|
| .widget-table-one {
| .widget-heading {
| display: flex;
| }
|
| .transactions-list {
| padding: 12px 12px;
| border: 1px dashed $dark;
| border-radius: 6px;
| -webkit-transition: all 0.1s ease;
| transition: all 0.1s ease;
|
| &:not(:last-child) {
| margin-bottom: 15px;
| }
|
| &:hover {
| -webkit-transform: translateY(-1px) scale(1.01);
| transform: translateY(-1px) scale(1.01);
| }
|
| .t-item {
| display: flex;
| justify-content: space-between;
|
| .t-company-name {
| display: flex;
| }
|
| .t-icon {
| margin-right: 12px;
|
| .avatar {
| position: relative;
| display: inline-block;
| width: 38px;
| height: 38px;
| font-size: 14px;
| font-weight: 600;
| letter-spacing: 1px;
|
| .avatar-title {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 100%;
| height: 100%;
| background-color: $danger;
| color: $l-danger;
| }
| }
|
| .icon {
| position: relative;
| display: inline-block;
| padding: 10px;
| background-color: $warning;
| border-radius: 50%;
|
| svg {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 19px;
| height: 19px;
| color: $l-warning;
| stroke-width: 2;
| }
| }
| }
|
| .t-name {
| align-self: center;
|
| h4 {
| font-size: 15px;
| letter-spacing: 0px;
| font-weight: 600;
| margin-bottom: 0;
| }
|
| .meta-date {
| font-size: 12px;
| margin-bottom: 0;
| font-weight: 600;
| color: $m-color_6;
| }
| }
|
| .t-rate {
| align-self: center;
|
| p {
| margin-bottom: 0;
| font-size: 13px;
| letter-spacing: 0px;
| }
|
| svg {
| width: 14px;
| height: 14px;
| vertical-align: baseline;
| }
|
| &.rate-inc {
| p, svg {
| color: $m-color_14;
| }
| }
|
| &.rate-dec {
| p, svg {
| color: $danger;
| }
| }
| }
| }
| }
| }
|
|