diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-12 01:35:20 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-12 01:35:20 +0200 |
commit | 759475608f9bea6eab2c2d2109eb4dff5d8e4c30 (patch) | |
tree | 91c1eb0815deaed1d4cc4f0461f5b06e1d5d0986 /components/Sidebar/index.tsx | |
parent | 554396de5028472902355e7409d4611bc84d1d85 (diff) |
fix: (#103) remembered how to use scrollbars
Diffstat (limited to 'components/Sidebar/index.tsx')
-rw-r--r-- | components/Sidebar/index.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/components/Sidebar/index.tsx b/components/Sidebar/index.tsx index 0b7c9f2..33af598 100644 --- a/components/Sidebar/index.tsx +++ b/components/Sidebar/index.tsx @@ -225,7 +225,13 @@ const Sidebar = (props: SidebarProps) => { /> )} > - <VStack flexGrow={1} overflowY="scroll" alignItems="left" bg="alt.100" paddingLeft={4}> + <VStack + flexGrow={1} + // overflowY="scroll" + alignItems="left" + bg="alt.100" + paddingLeft={4} + > <TagBar {...{ filter, setFilter, tagColors, setTagColors, openContextMenu, previewNode }} /> |