diff options
Diffstat (limited to 'extension/react-app/src')
-rw-r--r-- | extension/react-app/src/components/ContinueButton.tsx | 4 | ||||
-rw-r--r-- | extension/react-app/src/index.css | 4 | ||||
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/extension/react-app/src/components/ContinueButton.tsx b/extension/react-app/src/components/ContinueButton.tsx index d7739b20..eda9bcff 100644 --- a/extension/react-app/src/components/ContinueButton.tsx +++ b/extension/react-app/src/components/ContinueButton.tsx @@ -26,7 +26,7 @@ function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) { return ( <StyledButton hidden={props.hidden} - className="m-auto" + className="m-auto press-start-2p text-xs" onClick={props.onClick} > {vscMediaUrl ? ( @@ -34,7 +34,7 @@ function ContinueButton(props: { onClick?: () => void; hidden?: boolean }) { ) : ( <Play /> )} - Continue + CONTINUE </StyledButton> ); } diff --git a/extension/react-app/src/index.css b/extension/react-app/src/index.css index bac7fe97..68f9d0ab 100644 --- a/extension/react-app/src/index.css +++ b/extension/react-app/src/index.css @@ -25,3 +25,7 @@ body { margin: 0px; height: 100%; } + +.press-start-2p { + font-family: "Press Start 2P", "Lexend", sans-serif; +} diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 03b24349..d7efc288 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -415,7 +415,7 @@ function GUI(props: GUIProps) { {bottomMessage} </div> <Footer dataSwitchChecked={dataSwitchChecked}> - <div + {/* <div style={{ display: "flex", gap: "4px", @@ -460,7 +460,7 @@ function GUI(props: GUIProps) { checked={dataSwitchChecked} /> <span style={{ cursor: "help", fontSize: "14px" }}>Collect Data</span> - </div> + </div> */} <HeaderButtonWithText onClick={() => { // Show the dialog |