From 4cc2120fed9c2b96955bf88f2f2d20190fd1435a Mon Sep 17 00:00:00 2001 From: ailiujiarui <115072567+ailiujiarui@users.noreply.github.com> Date: Sun, 9 Jun 2024 17:05:04 +0800 Subject: [PATCH] feat: fix the top Navbar UI is broken issue (#3000) --- web/src/ManagementPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/ManagementPage.js b/web/src/ManagementPage.js index c88986a7..54315d31 100644 --- a/web/src/ManagementPage.js +++ b/web/src/ManagementPage.js @@ -411,7 +411,7 @@ function ManagementPage(props) { return Setting.isMobile() || window.location.pathname.startsWith("/trees"); } - const menuStyleRight = Setting.isAdminUser(props.account) && !Setting.isMobile() ? "calc(180px + 280px)" : "280px"; + const menuStyleRight = Setting.isAdminUser(props.account) && !Setting.isMobile() ? "calc(180px + 280px)" : "320px"; const onClose = () => { setMenuVisible(false);