summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-06 12:46:30 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-06 12:46:30 -0700
commit3930564baf6bdcb94728805ce71d3d76b02196f1 (patch)
treeb479710709e9a63fdbd9603454064bccde9eb98a /extension/react-app/src/components
parent28e82597ed21501c69a0c851436e4c4228694fe8 (diff)
downloadsncontinue-3930564baf6bdcb94728805ce71d3d76b02196f1.tar.gz
sncontinue-3930564baf6bdcb94728805ce71d3d76b02196f1.tar.bz2
sncontinue-3930564baf6bdcb94728805ce71d3d76b02196f1.zip
fix parroting bug
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r--extension/react-app/src/components/ComboBox.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx
index b825dc2a..55496fb9 100644
--- a/extension/react-app/src/components/ComboBox.tsx
+++ b/extension/react-app/src/components/ComboBox.tsx
@@ -71,9 +71,11 @@ const MainTextInput = styled.textarea`
background-color: ${secondaryDark};
color: white;
z-index: 1;
+ border: 1px solid transparent;
&:focus {
outline: 1px solid ${lightGray};
+ border: 1px solid transparent;
}
`;