From 7816ce7a33d18e8c58e96031bc3965e51cecb38d Mon Sep 17 00:00:00 2001 From: Luke <39926192+LukeWasTakenn@users.noreply.github.com> Date: Sun, 11 Jun 2023 10:29:59 +0200 Subject: [PATCH] fix(web): cap list menu width for long labeled items resolves #350 --- web/src/features/menu/list/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/features/menu/list/index.tsx b/web/src/features/menu/list/index.tsx index e062ea4..c724a64 100644 --- a/web/src/features/menu/list/index.tsx +++ b/web/src/features/menu/list/index.tsx @@ -28,6 +28,7 @@ const useStyles = createStyles((theme, params: { position?: MenuPosition; itemCo left: params.position === 'bottom-left' ? 1 : undefined, bottom: params.position === 'bottom-left' || params.position === 'bottom-right' ? 1 : undefined, fontFamily: 'Roboto', + width: 384 }, buttonsWrapper: { height: 'fit-content',