diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-12 01:29:40 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-12 01:29:40 +0200 |
commit | 20ce7e748753291a1f6952d8704bddd672705293 (patch) | |
tree | bd5831758713a6070a799537330b667ecbd92216 /components/Sidebar/index.tsx | |
parent | 23ca91cd21a97e174d28f1b445ead8b2f304e05c (diff) |
fix: (#102) ugly scrollbars
Diffstat (limited to 'components/Sidebar/index.tsx')
-rw-r--r-- | components/Sidebar/index.tsx | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/components/Sidebar/index.tsx b/components/Sidebar/index.tsx index 957669c..0b7c9f2 100644 --- a/components/Sidebar/index.tsx +++ b/components/Sidebar/index.tsx @@ -209,41 +209,41 @@ const Sidebar = (props: SidebarProps) => { nextPreviewNode, }} /> - {/* <Scrollbars - * //autoHeight - * autoHeightMax={600} - * autoHide - * renderThumbVertical={({ style, ...props }) => ( - * <Box - * style={{ - * ...style, - * borderRadius: 0, - * // backgroundColor: highlightColor, - * }} - * //color="alt.100" - * {...props} - * /> - * )} - * > */} - <VStack flexGrow={1} overflow="scroll" alignItems="left" bg="alt.100" paddingLeft={4}> - <TagBar - {...{ filter, setFilter, tagColors, setTagColors, openContextMenu, previewNode }} - /> - <Note - {...{ - setPreviewNode, - previewNode, - nodeById, - nodeByCite, - setSidebarHighlightedNode, - justification, - justificationList, - linksByNodeId, - openContextMenu, - }} - /> - </VStack> - {/*</Scrollbars>*/} + <Scrollbars + //autoHeight + //autoHeightMax={600} + autoHide + renderThumbVertical={({ style, ...props }) => ( + <Box + style={{ + ...style, + borderRadius: 0, + // backgroundColor: highlightColor, + }} + //color="alt.100" + {...props} + /> + )} + > + <VStack flexGrow={1} overflowY="scroll" alignItems="left" bg="alt.100" paddingLeft={4}> + <TagBar + {...{ filter, setFilter, tagColors, setTagColors, openContextMenu, previewNode }} + /> + <Note + {...{ + setPreviewNode, + previewNode, + nodeById, + nodeByCite, + setSidebarHighlightedNode, + justification, + justificationList, + linksByNodeId, + openContextMenu, + }} + /> + </VStack> + </Scrollbars> </Flex> </Resizable> </Collapse> |