diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-06 12:22:20 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-06 12:22:20 -0700 |
commit | f495205ad623162b6a20ddb409e70b0ba5c07214 (patch) | |
tree | ff66bf5b646d238fed72e8a785915574fac8e058 /extension/react-app/src/components/UserInputContainer.tsx | |
parent | 1e6d9c23053c0ea96ca0c79e174d5551aae2a6dc (diff) | |
parent | 28e4da39c1f7056b99dca89e6959a11b86202886 (diff) | |
download | sncontinue-f495205ad623162b6a20ddb409e70b0ba5c07214.tar.gz sncontinue-f495205ad623162b6a20ddb409e70b0ba5c07214.tar.bz2 sncontinue-f495205ad623162b6a20ddb409e70b0ba5c07214.zip |
Merge branch 'main' of github.com:continuedev/continue
Diffstat (limited to 'extension/react-app/src/components/UserInputContainer.tsx')
-rw-r--r-- | extension/react-app/src/components/UserInputContainer.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/extension/react-app/src/components/UserInputContainer.tsx b/extension/react-app/src/components/UserInputContainer.tsx index 28437d35..f51f0cb5 100644 --- a/extension/react-app/src/components/UserInputContainer.tsx +++ b/extension/react-app/src/components/UserInputContainer.tsx @@ -15,12 +15,10 @@ interface UserInputContainerProps { } const StyledDiv = styled.div` - background-color: rgb(45 45 45); + background-color: ${secondaryDark}; padding: 8px; padding-left: 16px; padding-right: 16px; - border-bottom: 1px solid white; - border-top: 1px solid white; font-size: 13px; display: flex; align-items: center; @@ -29,7 +27,7 @@ const StyledDiv = styled.div` const UserInputContainer = (props: UserInputContainerProps) => { return ( <StyledDiv> - <b>{props.children}</b> + {props.children} <div style={{ marginLeft: "auto" }}> <HeaderButtonWithText onClick={(e) => { |