summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/UserInputContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'extension/react-app/src/components/UserInputContainer.tsx')
-rw-r--r--extension/react-app/src/components/UserInputContainer.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/react-app/src/components/UserInputContainer.tsx b/extension/react-app/src/components/UserInputContainer.tsx
index 228c3530..866fef58 100644
--- a/extension/react-app/src/components/UserInputContainer.tsx
+++ b/extension/react-app/src/components/UserInputContainer.tsx
@@ -2,6 +2,7 @@ import React, { useContext, useEffect, useRef, useState } from "react";
import styled from "styled-components";
import {
defaultBorderRadius,
+ lightGray,
secondaryDark,
vscBackground,
vscForeground,
@@ -28,6 +29,9 @@ const StyledDiv = styled.div`
padding: 8px;
padding-top: 0px;
padding-bottom: 0px;
+
+ border-bottom: 0.5px solid ${lightGray};
+ border-top: 0.5px solid ${lightGray};
`;
const DeleteButtonDiv = styled.div`