Spaces:
Running on Zero
Running on Zero
| /* ββ 16:9 (landscape β₯ 900 px) β side-by-side ββ */ | |
| @media (min-width: 900px) { | |
| #main-row { flex-direction: row ; } | |
| #input-panel { max-width: 400px; } | |
| } | |
| /* ββ 9:16 (portrait < 600 px) β stacked ββ */ | |
| @media (max-width: 599px) { | |
| #main-row { flex-direction: column ; } | |
| #input-panel { width: 100% ; max-width: 100%; } | |
| #output-panel { width: 100% ; } | |
| /* Larger tap targets */ | |
| button, .gr-button { min-height: 48px ; font-size: 1.1rem ; } | |
| textarea, input[type="text"] { font-size: 16px ; } /* prevents iOS zoom */ | |
| } | |
| /* ββ Tablet mid-range (600 β 899 px) ββ */ | |
| @media (min-width: 600px) and (max-width: 899px) { | |
| #main-row { flex-direction: column ; } | |
| #input-panel { width: 100% ; } | |
| } |