From 7d7410942f59380c9291f81c34699dc4827855e0 Mon Sep 17 00:00:00 2001 From: LW Date: Tue, 30 May 2023 19:18:00 -0700 Subject: fix: make DesktopLeftNav not overflow screen (#762) * fix: make DesktopLeftNav not overflow screen * scroll: auto --- src/view/shell/desktop/LeftNav.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index 914dfb53a..8c701ea4e 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -274,6 +274,8 @@ const styles = StyleSheet.create({ top: 10, right: 'calc(50vw + 312px)', width: 220, + maxHeight: 'calc(100vh - 10px)', + overflowY: 'auto', }, profileCard: { -- cgit 1.4.1