diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-25 19:12:41 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-25 19:12:41 -0700 |
commit | 173b1a766598c3ccf9a9aa9bf87ea25e6de67e5b (patch) | |
tree | fa6b74855e69f86bf018a280e4b82965154170b9 /extension/react-app/src/components/ContinueButton.tsx | |
parent | 47c9bfb963022a219ab9b72cb0561d2fd0c28552 (diff) | |
parent | 4258ba75380e0c0c43e81151f2a9e530c20448bb (diff) | |
download | sncontinue-173b1a766598c3ccf9a9aa9bf87ea25e6de67e5b.tar.gz sncontinue-173b1a766598c3ccf9a9aa9bf87ea25e6de67e5b.tar.bz2 sncontinue-173b1a766598c3ccf9a9aa9bf87ea25e6de67e5b.zip |
Merge branch 'main' of github.com:continuedev/continue
Diffstat (limited to 'extension/react-app/src/components/ContinueButton.tsx')
-rw-r--r-- | extension/react-app/src/components/ContinueButton.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extension/react-app/src/components/ContinueButton.tsx b/extension/react-app/src/components/ContinueButton.tsx index d7739b20..6d753988 100644 --- a/extension/react-app/src/components/ContinueButton.tsx +++ b/extension/react-app/src/components/ContinueButton.tsx @@ -26,7 +26,8 @@ function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) { return ( <StyledButton hidden={props.hidden} - className="m-auto" + style={{ fontSize: "10px" }} + className="m-auto press-start-2p" onClick={props.onClick} > {vscMediaUrl ? ( @@ -34,7 +35,7 @@ function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) { ) : ( <Play /> )} - Continue + CONTINUE </StyledButton> ); } |