From 490ca02d35ad5b59f623e905c59ee6f718f6b940 Mon Sep 17 00:00:00 2001 From: Ryan Clark Date: Fri, 27 Dec 2024 13:34:42 -0600 Subject: [PATCH] issues/239: max content width for Menu --- frontend/src/components/Nav/Menu/styled.ts | 2 +- frontend/src/theme/theme.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Nav/Menu/styled.ts b/frontend/src/components/Nav/Menu/styled.ts index 930d93a85..deeb41dd7 100644 --- a/frontend/src/components/Nav/Menu/styled.ts +++ b/frontend/src/components/Nav/Menu/styled.ts @@ -45,7 +45,7 @@ export const ContentWrapper = styled.div` export const Title = styled.div` white-space: nowrap; - max-width: 110px; + max-width: max-content; overflow: hidden; text-overflow: ellipsis; `; diff --git a/frontend/src/theme/theme.ts b/frontend/src/theme/theme.ts index f6cd2bacc..d2d45208b 100644 --- a/frontend/src/theme/theme.ts +++ b/frontend/src/theme/theme.ts @@ -139,7 +139,7 @@ const baseTheme = { }, layout: { minWidth: '1200px', - navBarWidth: '240px', + navBarWidth: '280px', navBarHeight: '51px', rightSidebarWidth: '70vw', filtersSidebarWidth: '300px',