Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Safari Bugs on iOS #255

Merged
merged 2 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ const PortalHomePage = ({
<div className={styles.checkinButtons}>
<input
type="text"
autoComplete="off"
autoCorrect="off"
autoCapitalize="off"
placeholder="Enter event check-in code"
className={styles.checkinInput}
value={checkinCode}
Expand Down
3 changes: 2 additions & 1 deletion src/styles/pages/Home.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@
width: 0;

@media screen and (width <= vars.$breakpoint-md) {
font-size: 0.75rem;
// hardcoded to 16 to prevent auto zoom on iOS
font-size: 16px;
line-height: 1.5rem;
padding: 0.625rem 1.25rem;
}
Expand Down
Loading