fix: Adjust font size for inputs on iOS devices

This commit is contained in:
dayjoy
2025-10-14 14:47:12 +08:00
parent 5495c7bf25
commit b293b91697

View File

@@ -130,3 +130,18 @@
@apply bg-background text-foreground;
}
}
@media only screen and (max-device-width: 414px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
/* Adjust font size for inputs on iOS devices */
.flex-input {
font-size: 16px !important;
}
}
@media screen and (-webkit-min-device-pixel-ratio:2) {
select,
textarea,
input {
font-size: 16px !important;
}
}