Spaces:
Running on Zero
Running on Zero
File size: 842 Bytes
cd58174 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /* ββ 16:9 (landscape β₯ 900 px) β side-by-side ββ */
@media (min-width: 900px) {
#main-row { flex-direction: row !important; }
#input-panel { max-width: 400px; }
}
/* ββ 9:16 (portrait < 600 px) β stacked ββ */
@media (max-width: 599px) {
#main-row { flex-direction: column !important; }
#input-panel { width: 100% !important; max-width: 100%; }
#output-panel { width: 100% !important; }
/* Larger tap targets */
button, .gr-button { min-height: 48px !important; font-size: 1.1rem !important; }
textarea, input[type="text"] { font-size: 16px !important; } /* prevents iOS zoom */
}
/* ββ Tablet mid-range (600 β 899 px) ββ */
@media (min-width: 600px) and (max-width: 899px) {
#main-row { flex-direction: column !important; }
#input-panel { width: 100% !important; }
} |