diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-06 12:39:17 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-06 12:39:17 -0700 |
commit | a6935256795ccb63d8cbd4e0677d117efd4c6d9d (patch) | |
tree | 308c31354a094bcda4e14c9e304c7c1b2116ebfb /extension/react-app/src/components/UserInputContainer.tsx | |
parent | 28e4da39c1f7056b99dca89e6959a11b86202886 (diff) | |
download | sncontinue-a6935256795ccb63d8cbd4e0677d117efd4c6d9d.tar.gz sncontinue-a6935256795ccb63d8cbd4e0677d117efd4c6d9d.tar.bz2 sncontinue-a6935256795ccb63d8cbd4e0677d117efd4c6d9d.zip |
details
Diffstat (limited to 'extension/react-app/src/components/UserInputContainer.tsx')
-rw-r--r-- | extension/react-app/src/components/UserInputContainer.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/react-app/src/components/UserInputContainer.tsx b/extension/react-app/src/components/UserInputContainer.tsx index f51f0cb5..0ff3e74f 100644 --- a/extension/react-app/src/components/UserInputContainer.tsx +++ b/extension/react-app/src/components/UserInputContainer.tsx @@ -1,7 +1,7 @@ import React from "react"; import ReactMarkdown from "react-markdown"; import styled from "styled-components"; -import { buttonColor, secondaryDark } from "."; +import { buttonColor, secondaryDark, vscBackground } from "."; import HeaderButtonWithText from "./HeaderButtonWithText"; import { Play, XMark } from "@styled-icons/heroicons-outline"; import { RootStore } from "../redux/store"; @@ -22,6 +22,7 @@ const StyledDiv = styled.div` font-size: 13px; display: flex; align-items: center; + border-bottom: 1px solid ${vscBackground}; `; const UserInputContainer = (props: UserInputContainerProps) => { |