This commit is contained in:
Roman Pyrih
2025-06-20 12:59:50 +02:00
parent 186ac6d1fe
commit 56865b4758
3 changed files with 23 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -4487,6 +4487,7 @@ body#checkout .modal-content li {
border: 1px solid #d8d8d8 !important;
background: transparent !important;
cursor: pointer !important;
width: auto;
}
}
@@ -4866,6 +4867,26 @@ body {
margin: 0;
border-radius: 0 4px 4px 0;
}
@media (max-width: 1200px) and (min-width: 992px), (max-width: 400px) {
flex-direction: column;
row-gap: 5px;
.promo-input {
width: 100%;
border-radius: 4px;
}
.btn.btn-primary {
border-radius: 4px;
width: 100%;
}
}
@media (max-width: 991px) and (min-width: 401px) {
.promo-input {
width: calc(100% - 140px);
}
}
}
}