Fix layout cutoff on narrow desktop windows

Raise responsive layout breakpoints from 768px to 900px across all
components. This ensures narrow desktop browser windows (769–900px)
get the stacked, single-column layout rather than the three-column
grid that was too wide for those widths. The 768px breakpoint in
app.css is kept as-is since it only adjusts font sizes for iOS.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Nathan Schneider
2026-03-20 15:27:59 -06:00
parent f1ae9cac1f
commit 721b588a2b
6 changed files with 6 additions and 6 deletions

View File

@@ -941,7 +941,7 @@
opacity: 0.7;
}
@media (max-width: 768px) {
@media (max-width: 900px) {
main {
padding: 0.5rem;
}

View File

@@ -357,7 +357,7 @@
flex: 1;
}
@media (max-width: 768px) {
@media (max-width: 900px) {
.gradient-row {
grid-template-columns: 1fr;
grid-template-rows: auto auto auto;

View File

@@ -212,7 +212,7 @@
flex: 1;
}
@media (max-width: 768px) {
@media (max-width: 900px) {
.button-group {
grid-template-columns: 1fr;
}

View File

@@ -310,7 +310,7 @@
flex: 1;
}
@media (max-width: 768px) {
@media (max-width: 900px) {
.gradient-row {
grid-template-columns: 1fr;
grid-template-rows: auto auto auto;

View File

@@ -158,7 +158,7 @@
flex: 1;
}
@media (max-width: 768px) {
@media (max-width: 900px) {
.toolbar-btn {
width: 1.5rem;
height: 1.5rem;

View File

@@ -215,7 +215,7 @@
opacity: 0.8;
}
@media (max-width: 768px) {
@media (max-width: 900px) {
.metadata {
padding: 0.5rem;
}