diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-26 00:47:32 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-26 00:47:32 -0700 |
commit | d9a4ed993aad36464776c093333af1a310e5a492 (patch) | |
tree | ca423625619b9d628651bcc9a395ba8f47fa03a6 /extension/react-app/src/pages | |
parent | 3b776e4ce1d718c5902f113d4cface1c717f8c19 (diff) | |
download | sncontinue-d9a4ed993aad36464776c093333af1a310e5a492.tar.gz sncontinue-d9a4ed993aad36464776c093333af1a310e5a492.tar.bz2 sncontinue-d9a4ed993aad36464776c093333af1a310e5a492.zip |
fix colors and hover box behavior
Diffstat (limited to 'extension/react-app/src/pages')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 5d893de9..9bb558c7 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -178,7 +178,7 @@ function GUI(props: GUIProps) { ) { client?.deleteAtIndex(history.current_index); } else if (e.key === "Escape") { - dispatch(setBottomMessageCloseTimeout(undefined)); + dispatch(setBottomMessage(undefined)); } }; window.addEventListener("keydown", listener); @@ -409,7 +409,7 @@ function GUI(props: GUIProps) { borderRadius: defaultBorderRadius, padding: "12px", zIndex: 100, - boxShadow: `0px 0px 6px 0px ${vscForeground}`, + boxShadow: `0px 0px 4px 0px ${vscForeground}`, maxHeight: "50vh", overflow: "scroll", }} @@ -419,11 +419,17 @@ function GUI(props: GUIProps) { </div> <Footer dataSwitchChecked={dataSwitchChecked}> {vscMediaUrl && ( - <a href="https://github.com/continuedev/continue"> - <img src={`${vscMediaUrl}/continue-dev-square.png`} width="22px" /> + <a + href="https://github.com/continuedev/continue" + style={{ marginRight: "auto" }} + > + <img + src={`${vscMediaUrl}/continue-dev-square.png`} + width="22px" + style={{ backgroundColor: "black", color: "red" }} + /> </a> )} - <p style={{ margin: "0", marginRight: "auto" }}>Continue</p> <HeaderButtonWithText onClick={() => { // Show the dialog |