diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-17 13:33:29 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-17 13:33:29 -0700 |
commit | 1a647a7321a31d7ccf29f27e56c3df0828c3e9c8 (patch) | |
tree | 3e20e038d06449d6dff677566e1bdf6ed148eb96 /extension/react-app/src/pages | |
parent | 062b0872797fb4734ed36ea3a14f653dc685a86a (diff) | |
parent | d0dc7811eb71d9d53055a1aa684827502748b794 (diff) | |
download | sncontinue-1a647a7321a31d7ccf29f27e56c3df0828c3e9c8.tar.gz sncontinue-1a647a7321a31d7ccf29f27e56c3df0828c3e9c8.tar.bz2 sncontinue-1a647a7321a31d7ccf29f27e56c3df0828c3e9c8.zip |
Merge branch 'main' of https://github.com/continuedev/continue into anthropic
Diffstat (limited to 'extension/react-app/src/pages')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 64207487..c35cf21b 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -1,5 +1,9 @@ import styled from "styled-components"; -import { defaultBorderRadius } from "../components"; +import { + defaultBorderRadius, + vscBackground, + vscForeground, +} from "../components"; import Loader from "../components/Loader"; import ContinueButton from "../components/ContinueButton"; import { FullState, HighlightedRangeContext } from "../../../schema/FullState"; @@ -371,12 +375,13 @@ function GUI(props: GUIProps) { style={{ position: "fixed", bottom: "50px", - backgroundColor: "white", - color: "black", + backgroundColor: vscBackground, + color: vscForeground, borderRadius: defaultBorderRadius, padding: "16px", margin: "16px", zIndex: 100, + boxShadow: `0px 0px 10px 0px ${vscForeground}`, }} hidden={!showDataSharingInfo} > |