continue: made a payments method list

This commit is contained in:
smanylov
2026-04-03 14:52:31 +07:00
parent e75fcd7bff
commit 6cf7bd766d
8 changed files with 376 additions and 31 deletions
+121 -1
View File
@@ -5250,8 +5250,128 @@
}
.payment-user-cards {
.card-wrapper {
h3 {
color: #1e293b;
align-items: center;
gap: 8px;
margin-bottom: 16px;
font-size: 1.1rem;
display: flex;
}
.cards-wrapper {
background: #f8fafc;
border: 1.5px dashed #d1d5db;
border-radius: 14px;
padding: 20px;
text-align: center;
}
.card-item {
display: flex;
gap: 10px;
margin-bottom: 10px;
justify-content: space-between;
border-radius: 14px;
&-info {
display: flex;
width: 100%;
max-width: 400px;
color: v.$text-s;
align-items: center;
position: relative;
}
&-type {
font-size: 10px;
color: v.$text-s;
margin-left: 5px;
position: absolute;
right: 10px;
/* top: 3px; */
@media (max-width: 490px) {
font-size: 8px;
}
}
&-expired {
font-size: 10px;
color: v.$text-s;
margin-left: 5px;
position: absolute;
right: 10px;
bottom: 3px;
@media (max-width: 490px) {
font-size: 8px;
}
}
&-confirm-window {
h4 {
text-align: center;
margin-bottom: 15px;
}
}
&-confirm-action {
display: flex;
gap: 10px;
justify-content: center;
.btn {
max-width: 140px;
width: 100%;
position: relative;
}
}
&:last-child {
margin-bottom: 0;
}
&:hover {
background: #e2e4e6;
}
input {
background: v.$white;
padding: 5px 10px;
@media (max-width: 490px) {
font-size: 14px;
}
}
.btn {
padding: 5px 10px;
}
}
&-empty {
.empty-card-title {
font-size: 14px;
color: #64748b;
font-weight: 500;
}
.empty-card-text {
font-size: 12px;
color: #9ca3af;
margin-top: 4px;
}
}
&-notification {
margin-top: 14px;
padding: 12px 16px;
background: #fafafa;
border-radius: 10px;
font-size: 11px;
color: #9ca3af;
line-height: 1.6;
}
}