diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-05-28 22:18:18 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-05-28 22:18:18 -0400 |
commit | 25770db64e613140f9c060f28f7e79e3ca593519 (patch) | |
tree | 8102b437d7fa78654118022c218714c5149a8ff6 /extension/react-app/src/components/CodeBlock.tsx | |
parent | aa2ac903819ee6837d034b5f7ed8437323628191 (diff) | |
download | sncontinue-25770db64e613140f9c060f28f7e79e3ca593519.tar.gz sncontinue-25770db64e613140f9c060f28f7e79e3ca593519.tar.bz2 sncontinue-25770db64e613140f9c060f28f7e79e3ca593519.zip |
UI Cleanup
Diffstat (limited to 'extension/react-app/src/components/CodeBlock.tsx')
-rw-r--r-- | extension/react-app/src/components/CodeBlock.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/react-app/src/components/CodeBlock.tsx b/extension/react-app/src/components/CodeBlock.tsx index 4c10ab23..e0336554 100644 --- a/extension/react-app/src/components/CodeBlock.tsx +++ b/extension/react-app/src/components/CodeBlock.tsx @@ -6,7 +6,8 @@ import { defaultBorderRadius, vscBackground } from "."; import { Clipboard } from "@styled-icons/heroicons-outline"; const StyledPre = styled.pre` - overflow: scroll; + overflow-y: scroll; + word-wrap: normal; border: 1px solid gray; border-radius: ${defaultBorderRadius}; background-color: ${vscBackground}; |