blob: 9196b3168866751172915a2fd0e623d7141e8b9f [file] [log] [blame]
Philip Zeyligere08c7ff2025-06-06 13:22:12 -07001html,
2body {
3 height: 100%;
4 margin: 0;
5 padding: 0;
6 font-family:
7 -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
8 background-color: #ffffff;
9}
10
11/* iOS Safari viewport fix */
12html {
13 height: -webkit-fill-available;
14}
15
16body {
17 display: flex;
18 overflow: hidden;
19 /* Additional iOS Safari height fix */
20 min-height: 100vh;
21 min-height: -webkit-fill-available;
22}
23
24/* Mobile viewport optimizations */
25@media screen and (max-width: 768px) {
26 html {
27 font-size: 16px; /* Prevent iOS zoom */
28 }
29}