diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-06 12:46:30 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-06 12:46:30 -0700 |
commit | 3930564baf6bdcb94728805ce71d3d76b02196f1 (patch) | |
tree | b479710709e9a63fdbd9603454064bccde9eb98a /extension/react-app/src/components/ComboBox.tsx | |
parent | 28e82597ed21501c69a0c851436e4c4228694fe8 (diff) | |
download | sncontinue-3930564baf6bdcb94728805ce71d3d76b02196f1.tar.gz sncontinue-3930564baf6bdcb94728805ce71d3d76b02196f1.tar.bz2 sncontinue-3930564baf6bdcb94728805ce71d3d76b02196f1.zip |
fix parroting bug
Diffstat (limited to 'extension/react-app/src/components/ComboBox.tsx')
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 2 |
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; } `; |