Newer
Older
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
.payment-block {
border: 1px solid $color--mid-grey;
padding: 1rem;
margin-bottom: 1rem;
@include media-query(mob-landscape) {
padding: 2rem;
}
&__header {
margin-bottom: 1rem;
@include media-query(tablet-portrait) {
margin-bottom: 1.5rem;
}
@include media-query(mob-landscape) {
display: flex;
justify-content: space-between;
align-items: center;
}
}
&__title {
font-size: map-get($font-sizes, delta);
margin: 0 0 1rem;
@include media-query(mob-landscape) {
margin: 0;
}
}
&__button {
padding: .7rem 1.2rem;
}
&__status {
margin: 0;
@include media-query(tablet-landscape) {
display: block;
font-weight: $weight--bold;
}
}
&__rejected {
text-align: center;
}
&__rejected-link {
font-weight: $weight--bold;
}
&__mobile-label {
display: inline-block;
font-weight: $weight--bold;
white-space: pre;
@include media-query(tablet-landscape) {
display: none;
}
}
&__table {
thead {
display: none;
border-top: 2px solid $color--light-mid-grey;
@include media-query(tablet-landscape) {
display: table-header-group;
}
th {
color: $color--mid-dark-grey;
padding: 10px;
@include media-query(tablet-landscape) {
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
}
}
tr {
border-color: $color--light-mid-grey;
}
}
tbody {
font-size: map-get($font-sizes, zeta);
a {
text-decoration: underline;
}
}
tr {
border: 0;
border-bottom: 2px solid $color--light-grey;
&:hover {
box-shadow: none;
}
td {
padding: 0 0 .5rem;
word-break: break-word;
&:first-child {
padding: 1rem 0 .5rem;
@include media-query(tablet-landscape) {
padding: 1rem;
}
}
&:last-child {
padding: 0 0 1rem;
display: flex;
flex-wrap: wrap;
& > * {
flex: 1 1 55px;
max-width: 55px;
}
}
@include media-query(tablet-landscape) {
padding: 1rem;
}
}
}
}
&__table-amount {
min-width: 90px;
}
&__table-status {
min-width: 160px;
}
&__table-update {
min-width: 160px;
width: 25%;
}
}