summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/DebugPanel.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-05-28 22:18:18 -0400
committerNate Sesti <sestinj@gmail.com>2023-05-28 22:18:18 -0400
commit0625786ce59f38f1c317edaff60220a9ef200862 (patch)
treeebf47abfa452806246769c70b5fa83c289672139 /extension/react-app/src/components/DebugPanel.tsx
parent095c3bbc9a0c618a96f30e039810937138e5b57e (diff)
downloadsncontinue-0625786ce59f38f1c317edaff60220a9ef200862.tar.gz
sncontinue-0625786ce59f38f1c317edaff60220a9ef200862.tar.bz2
sncontinue-0625786ce59f38f1c317edaff60220a9ef200862.zip
UI Cleanup
Diffstat (limited to 'extension/react-app/src/components/DebugPanel.tsx')
-rw-r--r--extension/react-app/src/components/DebugPanel.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/extension/react-app/src/components/DebugPanel.tsx b/extension/react-app/src/components/DebugPanel.tsx
index ed00571b..9dacc624 100644
--- a/extension/react-app/src/components/DebugPanel.tsx
+++ b/extension/react-app/src/components/DebugPanel.tsx
@@ -36,7 +36,8 @@ const GradientContainer = styled.div`
const MainDiv = styled.div`
height: 100%;
border-radius: ${defaultBorderRadius};
- overflow: scroll;
+ overflow-y: scroll;
+ scrollbar-gutter: stable both-edges;
scrollbar-base-color: transparent;
/* background: ${vscBackground}; */
background-color: #1e1e1ede;
@@ -107,6 +108,7 @@ function DebugPanel(props: DebugPanelProps) {
className={
tab.title === "Chat" ? "overflow-hidden" : "overflow-scroll"
}
+ style={{ scrollbarGutter: "stable both-edges" }}
>
{tab.element}
</div>