Merge pull request #10276 from jibees/10250-split-checkout-responsiveness-is-broken-on-iphone

Split Checkout, increase input to 16px for small devices and iOS devices
This commit is contained in:
Filipe
2023-01-25 17:32:10 +00:00
committed by GitHub

View File

@@ -507,3 +507,15 @@
margin-bottom: 10px;
}
}
// For small screen or for iOS devices, increase to 16px the input font-size
@media screen and (max-width: 700px) {
.checkout-input input {
font-size: 16px;
}
}
@supports(-webkit-overflow-scrolling: touch) {
.checkout-input input {
font-size: 16px;
}
}