From a48e64e72a1e5a89f3615ed82005c42b4549eb2f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 24 Mar 2025 22:23:27 +0200 Subject: make the sidebar smaller when offset, reduce total offset (#8052) --- src/alf/breakpoints.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/alf/breakpoints.ts') diff --git a/src/alf/breakpoints.ts b/src/alf/breakpoints.ts index f30a4b489..c9f66a77f 100644 --- a/src/alf/breakpoints.ts +++ b/src/alf/breakpoints.ts @@ -31,8 +31,8 @@ export function useBreakpoints(): Record & { * Fine-tuned breakpoints for the shell layout */ export function useLayoutBreakpoints() { - const rightNavVisible = useMediaQuery({minWidth: 1075}) - const centerColumnOffset = useMediaQuery({minWidth: 1075, maxWidth: 1300}) + const rightNavVisible = useMediaQuery({minWidth: 1100}) + const centerColumnOffset = useMediaQuery({minWidth: 1100, maxWidth: 1300}) const leftNavMinimal = useMediaQuery({maxWidth: 1300}) return { -- cgit 1.4.1