Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit f4131ad

Browse files
committed
improvement(reskin-payment): payment summary
1 parent 9a4386e commit f4131ad

File tree

4 files changed

+362
-7
lines changed

4 files changed

+362
-7
lines changed

css/reskin-2/common.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
--green: #137d60;
3030
--blue-1: #eaf6fd;
3131
--blue-2: #bae1f9;
32-
32+
--blue-3: #2c95d7;
33+
--grey-1: #767676;
3334
--divider: #e9e9e9;
3435

3536
--header-height: 80px;

css/reskin-2/footer.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,18 @@
1212
padding: 16px 32px;
1313
max-width: var(--screen-max);
1414
margin: 0 auto;
15-
box-sizing: border-box;
15+
box-sizing: content-box;
1616

1717
font-size: 12px;
1818
line-height: 18px;
1919
font-weight: 400;
2020
color: var(--black-100);
2121
}
22+
@media (max-width: /* --sm-max */ 959px) {
23+
.footer-wrapper .footer-inner {
24+
padding: 16px 16px;
25+
}
26+
}
2227
@media (max-width: /* --xs-max */ 599px) {
2328
.footer-wrapper .footer-inner {
2429
flex-direction: column;

css/reskin-2/paymentHistory.css

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ body {
55
}
66

77
.page {
8-
min-height: calc(100vh - var(--header-height) - var(--footer-height));
8+
min-height: calc(100vh - var(--header-height) - var(--footer-height) - 64px);
99
max-width: var(--screen-max);
1010
margin: 0 auto;
1111
padding: 32px;
12-
box-sizing: border-box;
12+
box-sizing: content-box;
1313
}
1414
.page table.myHome tbody tr td.bodyColumn#payments {
1515
padding: 0;
1616
}
17-
@media (max-width: /* --xs-max */ 599px) {
17+
@media (max-width: /* --sm-max */ 959px) {
1818
.page {
19-
min-height: calc(100vh - var(--header-height-mobile) - 75px);
19+
min-height: calc(100vh - var(--header-height-mobile) - 75px - 32px);
2020
max-width: 100%;
21-
padding: 16px;
21+
padding: 16px 16px 0;
2222
}
2323
}
2424

@@ -158,6 +158,12 @@ body {
158158
top: 100%;
159159
}
160160

161+
.paymentHistoryDropdown-container {
162+
display: flex;
163+
width: 100%;
164+
gap: 8px;
165+
}
166+
161167
.paymentHistoryDropdown {
162168
}
163169
.paymentHistoryDropdown .dropdown-toggle {

0 commit comments

Comments
 (0)