mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Make buttons the same size as the add link button
This commit is contained in:
parent
a9b3123b1b
commit
584f30c525
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue