From 82108ea480674cd67b5cf7967d716d3a52caa14c Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Sun, 7 Jun 2026 21:27:11 -0500 Subject: [PATCH] tweak(desktop): sidebar auto-collapse breakpoint 600px -> 768px 768 is the standard md breakpoint and a more honest 'no room to dock' point. --- apps/desktop/src/app/layout-constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/app/layout-constants.ts b/apps/desktop/src/app/layout-constants.ts index 545addee28a..3174fc790ee 100644 --- a/apps/desktop/src/app/layout-constants.ts +++ b/apps/desktop/src/app/layout-constants.ts @@ -15,5 +15,5 @@ export const PAGE_INSET_NEG_X = '-mx-[clamp(1.25rem,4vw,4rem)]' // Below this viewport width a docked sidebar leaves no room for content, so both // rails auto-collapse into the hover-reveal overlay. Single source of truth for // the responsive collapse point. -export const SIDEBAR_COLLAPSE_BREAKPOINT_PX = 600 +export const SIDEBAR_COLLAPSE_BREAKPOINT_PX = 768 export const SIDEBAR_COLLAPSE_MEDIA_QUERY = `(max-width: ${SIDEBAR_COLLAPSE_BREAKPOINT_PX}px)`