From 4fccdb91ec60121e43cf6236c83e9939b80d17fd Mon Sep 17 00:00:00 2001 From: n-hidaka <85332716+n-hidaka@users.noreply.github.com> Date: Tue, 21 May 2024 14:03:20 +0900 Subject: [PATCH] style: expand area to avoid displaying horizontal scroll bar --- src/conference/components/right-menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conference/components/right-menu.tsx b/src/conference/components/right-menu.tsx index 7c236d7..951b3b8 100644 --- a/src/conference/components/right-menu.tsx +++ b/src/conference/components/right-menu.tsx @@ -42,7 +42,7 @@ const wrapperStyle = css({ right: 0, bottom: 0, zIndex: zIndex.base, - width: wrapperWidth, + width: `calc(${wrapperWidth} - 15px)`, backgroundColor: globalColors.gray, height: "100%", transition: ".25s ease transform",