diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-06 23:02:59 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-06 23:02:59 -0700 |
commit | ceafdf18c9d9f0f8769d4a9e45c8a407179161c5 (patch) | |
tree | dfed3b9b14448fac251230777c2cbf869bccf386 /extension/react-app/src/components/TextDialog.tsx | |
parent | 6e8885fc2f7feb06ef6ac87d2d7688f9f33d15de (diff) | |
download | sncontinue-ceafdf18c9d9f0f8769d4a9e45c8a407179161c5.tar.gz sncontinue-ceafdf18c9d9f0f8769d4a9e45c8a407179161c5.tar.bz2 sncontinue-ceafdf18c9d9f0f8769d4a9e45c8a407179161c5.zip |
feat: :lipstick: handful of UI improvements
Diffstat (limited to 'extension/react-app/src/components/TextDialog.tsx')
-rw-r--r-- | extension/react-app/src/components/TextDialog.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/TextDialog.tsx b/extension/react-app/src/components/TextDialog.tsx index 44d25ae6..a9fcbb8f 100644 --- a/extension/react-app/src/components/TextDialog.tsx +++ b/extension/react-app/src/components/TextDialog.tsx @@ -25,12 +25,12 @@ const Dialog = styled.div` color: ${vscForeground}; background-color: ${vscBackground}; border-radius: 8px; - padding: 8px; display: flex; flex-direction: column; box-shadow: 0 0 10px 0 ${vscForeground}; margin: auto; word-wrap: break-word; + overflow: hidden; `; const TextArea = styled.textarea` |