summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/UserInputContainer.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-09-06 23:02:59 -0700
committerNate Sesti <sestinj@gmail.com>2023-09-06 23:02:59 -0700
commitceafdf18c9d9f0f8769d4a9e45c8a407179161c5 (patch)
treedfed3b9b14448fac251230777c2cbf869bccf386 /extension/react-app/src/components/UserInputContainer.tsx
parent6e8885fc2f7feb06ef6ac87d2d7688f9f33d15de (diff)
downloadsncontinue-ceafdf18c9d9f0f8769d4a9e45c8a407179161c5.tar.gz
sncontinue-ceafdf18c9d9f0f8769d4a9e45c8a407179161c5.tar.bz2
sncontinue-ceafdf18c9d9f0f8769d4a9e45c8a407179161c5.zip
feat: :lipstick: handful of UI improvements
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`