fix recipient address mobile view

This commit is contained in:
saltrafael 2021-05-26 21:25:09 -03:00 committed by Thomas Zarebczan
parent f8e1274c38
commit 19055784ff
2 changed files with 5 additions and 1 deletions

View file

@ -405,7 +405,7 @@ fieldset-group {
}
.form-field--price-amount {
width: 7em;
max-width: 6em;
}
.form-field--price-amount--auto {
@ -415,6 +415,9 @@ fieldset-group {
.form-field--address {
min-width: 18em;
@media (max-width: $breakpoint-xxsmall) {
min-width: 10em;
}
}
.form-field__help {

View file

@ -2,6 +2,7 @@
$spacing-vertical: 2rem;
$spacing-width: 36px;
$breakpoint-xxsmall: 450px;
$breakpoint-xsmall: 600px;
$breakpoint-small: 900px;
$breakpoint-medium: 1150px;