From a177829976ad4a7d0c7d2d83fa30b23251de44c1 Mon Sep 17 00:00:00 2001 From: Jack Short Date: Mon, 29 Aug 2022 12:49:36 -0400 Subject: [PATCH] style: switching hovered and idle colors (#4526) --- src/components/Tokens/TokenTable/SearchBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Tokens/TokenTable/SearchBar.tsx b/src/components/Tokens/TokenTable/SearchBar.tsx index 5dfe16d998..ff4a923e5b 100644 --- a/src/components/Tokens/TokenTable/SearchBar.tsx +++ b/src/components/Tokens/TokenTable/SearchBar.tsx @@ -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 {