diff options
Diffstat (limited to 'components/Sidebar')
-rw-r--r-- | components/Sidebar/Link.tsx | 8 | ||||
-rw-r--r-- | components/Sidebar/index.tsx | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/components/Sidebar/Link.tsx b/components/Sidebar/Link.tsx index 97b4189..f3ada7d 100644 --- a/components/Sidebar/Link.tsx +++ b/components/Sidebar/Link.tsx @@ -240,7 +240,13 @@ export const PreviewLink = (props: LinkProps) => { /> )} > - <Box w="100%" color="black" px={3} sx={noteStyle} overflowY="scroll"> + <Box + w="100%" + color="black" + px={3} + sx={noteStyle} + //overflowY="scroll" + > {orgText} </Box> </Scrollbars> 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 }} /> |