From b8dab4e0d776ef5ccfcc48f9d255daf849f3ce53 Mon Sep 17 00:00:00 2001 From: Rhys Howell Date: Thu, 29 May 2025 21:43:08 -0400 Subject: [PATCH] fix(shell): prevent horizontal overflow scroll --- .../src/components/compass-shell/tab-compass-shell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/compass-shell/src/components/compass-shell/tab-compass-shell.tsx b/packages/compass-shell/src/components/compass-shell/tab-compass-shell.tsx index 679929a9d0b..967981057f2 100644 --- a/packages/compass-shell/src/components/compass-shell/tab-compass-shell.tsx +++ b/packages/compass-shell/src/components/compass-shell/tab-compass-shell.tsx @@ -30,7 +30,7 @@ const compassShellStyles = css( flexBasis: 'auto', position: 'relative', flexDirection: 'column', - width: '100vw', + width: '100%', }, getScrollbarStyles(true /* Always show dark mode. */) );