From 29dbcb309dbbee780b368e7fbb9fdd027c5c8236 Mon Sep 17 00:00:00 2001 From: Horatiu Muresan <39557534+horymury@users.noreply.github.com> Date: Tue, 7 Nov 2023 13:06:03 +0200 Subject: [PATCH] fix(drawer-menu) Make drawer menu accessible on small height (#14026) --- react/features/toolbox/components/web/OverflowMenuButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/toolbox/components/web/OverflowMenuButton.tsx b/react/features/toolbox/components/web/OverflowMenuButton.tsx index f6d1874d61..e019a8a202 100644 --- a/react/features/toolbox/components/web/OverflowMenuButton.tsx +++ b/react/features/toolbox/components/web/OverflowMenuButton.tsx @@ -73,7 +73,7 @@ const useStyles = makeStyles<{ overflowDrawer: boolean; reactionsMenuHeight: num return { overflowMenuDrawer: { overflow: 'hidden', - height: `calc(${DRAWER_MAX_HEIGHT} - ${reactionsMenuHeight}px - 16px)` + height: `calc(${DRAWER_MAX_HEIGHT})` }, contextMenu: { position: 'relative' as const,