Commit e2d7cf71 authored by tom's avatar tom

clean up

parent 6cb80c92
......@@ -22,11 +22,13 @@ const FilterButton = ({ isActive, appliedFiltersNum, onClick, isCollapsed }: Pro
leftIcon={ isCollapsed ? undefined : FilterIcon }
rightIcon={ appliedFiltersNum ? <Circle bg={ badgeBgColor } size={ 5 } color={ badgeColor }>{ appliedFiltersNum }</Circle> : undefined }
size="sm"
fontWeight="500"
variant="outline"
colorScheme="gray-dark"
onClick={ onClick }
isActive={ isActive }
px={ 1.5 }
flexShrink={ 0 }
>
{ isCollapsed ? FilterIcon : 'Filter' }
</Button>
......
......@@ -36,6 +36,8 @@ const FilterInput = ({ onChange, className, size = 'sm', placeholder }: Props) =
value={ filterQuery }
onChange={ handleFilterQueryChange }
placeholder={ placeholder }
borderWidth="2px"
textOverflow="ellipsis"
/>
</InputGroup>
);
......
......@@ -36,11 +36,10 @@ const Filters = () => {
size="sm"
variant="outline"
colorScheme="gray-dark"
fontWeight="500"
borderWidth="1px"
onClick={ handleClick }
isActive={ isActive }
px={ 2 }
flexShrink={ 0 }
px={ 1.5 }
>
Filter
</Button>
......
......@@ -45,7 +45,6 @@ const Page = ({ children }: Props) => {
paddingTop={ isMobile ? 0 : 9 }
paddingBottom={ 10 }
spacing={ 0 }
overflow="hidden"
>
<Header/>
<Box
......
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