Skip to content

Commit c646b97

Browse files
committed
fix: increase input size to avoid mobile zoom
on iOS, inputs with font sizes below 16px are automatically zoomed in, which causes issues with page layouts and hides the close button for the widget modal. this change increases the input size to 16px to avoid the zoom on mobile devices fix #236
1 parent c7425cb commit c646b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/modal.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
background: #fff;
347347
color: var(--baseColor);
348348
box-shadow: none;
349-
font-size: 14px;
349+
font-size: 16px;
350350
font-weight: 500;
351351
line-height: 24px;
352352
transition: box-shadow ease-in-out 0.15s;

0 commit comments

Comments
 (0)