diff --git a/bookmarks/styles/base.scss b/bookmarks/styles/base.scss index 5086c50..9ab98b8 100644 --- a/bookmarks/styles/base.scss +++ b/bookmarks/styles/base.scss @@ -102,3 +102,12 @@ a:visited:hover { font-weight: bold; } } + +// Increase input font size on small viewports to prevent zooming on focus the input +// on mobile devices. 430px relates to the "normalized" iPhone 14 Pro Max +// viewport size +@media screen and (max-width: 430px) { + .form-input { + font-size: 16px; + } +}