We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb7795 commit 1547272Copy full SHA for 1547272
src/pages/index.tsx
@@ -132,6 +132,9 @@ const PortalHomePage = ({
132
<div className={styles.checkinButtons}>
133
<input
134
type="text"
135
+ autoComplete="off"
136
+ autoCorrect="off"
137
+ autoCapitalize="off"
138
placeholder="Enter event check-in code"
139
className={styles.checkinInput}
140
value={checkinCode}
src/styles/pages/Home.module.scss
@@ -221,7 +221,8 @@
221
width: 0;
222
223
@media screen and (width <= vars.$breakpoint-md) {
224
- font-size: 0.75rem;
+ // 1rem prevents auto zoom on iOS
225
+ font-size: 1rem;
226
line-height: 1.5rem;
227
padding: 0.625rem 1.25rem;
228
}
0 commit comments