style: switching hovered and idle colors (#4526)

This commit is contained in:
Jack Short 2022-08-29 12:49:36 -04:00 committed by GitHub
parent b8b4f960dd
commit a177829976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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