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/Link.tsx | |
parent | 554396de5028472902355e7409d4611bc84d1d85 (diff) |
fix: (#103) remembered how to use scrollbars
Diffstat (limited to 'components/Sidebar/Link.tsx')
-rw-r--r-- | components/Sidebar/Link.tsx | 8 |
1 files changed, 7 insertions, 1 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> |