Make buttons the same size as the add link button

This commit is contained in:
Jackson Harper 2022-04-21 19:49:02 -07:00
parent a9b3123b1b
commit 584f30c525

View file

@ -600,7 +600,7 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element {
const searchQuery = SAVED_SEARCHES[key]
const style = searchQuery === props.searchTerm || (!props.searchTerm && !searchQuery) ? 'ctaDarkYellow' : 'ctaLightGray'
return (
<Button key={key} style={style} onClick={() => { props.applySearchQuery(searchQuery)}} css={{ p: '10px 12px', borderRadius: '6px', whiteSpace: 'nowrap' }}>
<Button key={key} style={style} onClick={() => { props.applySearchQuery(searchQuery)}} css={{ p: '10px 12px', height: '37.5px', borderRadius: '6px', whiteSpace: 'nowrap' }}>
{key}
</Button>
)