Commit b3639b34 authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: makes SearchBar focus border-width consistent (#4452)

parent 53ebf37b
...@@ -32,8 +32,9 @@ const SearchInput = styled.input` ...@@ -32,8 +32,9 @@ const SearchInput = styled.input`
:focus { :focus {
outline: none; outline: none;
background-color: ${({ theme }) => theme.backgroundSurface}; background-color: ${({ theme }) => theme.backgroundSurface};
border: 1.5px solid ${({ theme }) => theme.accentActionSoft}; border-color: ${({ theme }) => theme.accentActionSoft};
} }
::placeholder { ::placeholder {
color: ${({ theme }) => theme.textTertiary}; color: ${({ theme }) => theme.textTertiary};
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment