summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/DebugPanel.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 14:09:50 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 14:09:50 -0400
commite627b99a89d346d7ad88947182d110c4aeb3272f (patch)
tree09f0bd1cbfdec05615870d01a8cedeb7eb4afc51 /extension/react-app/src/components/DebugPanel.tsx
parent22c420cbf26293e145def3e90e7132b4a337a5a5 (diff)
parenta6a66f8a8b42eca861b05d6e7ccc0d0c2cfc8706 (diff)
downloadsncontinue-e627b99a89d346d7ad88947182d110c4aeb3272f.tar.gz
sncontinue-e627b99a89d346d7ad88947182d110c4aeb3272f.tar.bz2
sncontinue-e627b99a89d346d7ad88947182d110c4aeb3272f.zip
Merge branch 'main' into docs
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>