diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-24 23:13:31 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-24 23:13:31 -0700 |
commit | eb15a6fb735f3c34d9bcc77fe93834018ad117ec (patch) | |
tree | fddad2c21ad76f50a7545a929bfd64822a6ee0e8 /extension/react-app | |
parent | c0799a92d3588cefa7c88a18452811d0153c685b (diff) | |
download | sncontinue-eb15a6fb735f3c34d9bcc77fe93834018ad117ec.tar.gz sncontinue-eb15a6fb735f3c34d9bcc77fe93834018ad117ec.tar.bz2 sncontinue-eb15a6fb735f3c34d9bcc77fe93834018ad117ec.zip |
move p outside a tag
Diffstat (limited to 'extension/react-app')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 76194db7..a42e38f4 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -419,14 +419,11 @@ function GUI(props: GUIProps) { </div> <Footer dataSwitchChecked={dataSwitchChecked}> {vscMediaUrl && ( - <a - href="https://github.com/continuedev/continue" - style={{ margin: "0", marginRight: "auto" }} - > + <a href="https://github.com/continuedev/continue"> <img src={`${vscMediaUrl}/continue-dev-square.png`} width="22px" /> - <p style={{ margin: "0" }}>Continue</p> </a> )} + <p style={{ margin: "0", marginRight: "auto" }}>Continue</p> <HeaderButtonWithText onClick={() => { // Show the dialog |