Commit 27b103e3 authored by Moody Salem's avatar Moody Salem

fix(search modal): restore style on sort button

parent 2a751b98
......@@ -5,8 +5,8 @@ import { RowFixed } from '../Row'
export const FilterWrapper = styled(RowFixed)`
padding: 8px;
background-color: ${({ selected, theme }) => selected && theme.bg2};
color: ${({ selected, theme }) => (selected ? theme.text1 : theme.text2)};
background-color: ${({ theme }) => theme.bg2};
color: ${({ theme }) => theme.text1};
border-radius: 8px;
user-select: none;
& > * {
......
......@@ -177,7 +177,7 @@ function SearchModal({
<SortButton
ascending={invertSearchOrder}
toggleSortOrder={() => setInvertSearchOrder(iso => !iso)}
title={isTokenView ? 'Your Balances' : ' '}
title="Your Balances"
/>
)}
</RowBetween>
......
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