diff --git a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx index fbe331add..8a3fbdd56 100644 --- a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx +++ b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx @@ -56,36 +56,15 @@ export function LibraryFilterMenu(props: LibraryFilterMenuProps): JSX.Element { function SavedSearches(props: LibraryFilterMenuProps): JSX.Element { return ( - + - - - + + + ) @@ -203,7 +182,6 @@ function MenuPanel(props: MenuPanelProps): JSX.Element { type FilterButtonProps = { text: string - spaced?: boolean filterTerm: string searchTerm: string | undefined @@ -226,12 +204,13 @@ function FilterButton(props: FilterButtonProps): JSX.Element { css={{ pl: '10px', pt: '2px', // TODO: hack to middle align - mb: props.spaced ? '10px' : '0px', + mb: '10px', width: '100%', height: '30px', backgroundColor: selected ? '#FFEA9F' : 'unset', fontSize: '16px', fontWeight: 'regular', + fontFamily: 'Inter', color: '#3D3D3D', verticalAlign: 'middle', borderRadius: '3px',