Commit a1778299 authored by Jack Short's avatar Jack Short Committed by GitHub

style: switching hovered and idle colors (#4526)

parent b8b4f960
...@@ -17,7 +17,7 @@ const SearchInput = styled.input` ...@@ -17,7 +17,7 @@ const SearchInput = styled.input`
background-image: url(${searchIcon}); background-image: url(${searchIcon});
background-size: 20px 20px; background-size: 20px 20px;
background-position: 12px center; background-position: 12px center;
background-color: ${({ theme }) => theme.backgroundSurface}; background-color: ${({ theme }) => theme.backgroundModule};
border-radius: 12px; border-radius: 12px;
border: 1px solid ${({ theme }) => theme.backgroundOutline}; border: 1px solid ${({ theme }) => theme.backgroundOutline};
height: 100%; height: 100%;
...@@ -27,7 +27,7 @@ const SearchInput = styled.input` ...@@ -27,7 +27,7 @@ const SearchInput = styled.input`
color: ${({ theme }) => theme.textSecondary}; color: ${({ theme }) => theme.textSecondary};
:hover { :hover {
background-color: ${({ theme }) => theme.backgroundModule}; background-color: ${({ theme }) => theme.backgroundSurface};
} }
:focus { :focus {
......
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