Reduce margin on the left of the clear search button

This allows more space for text on smaller devices
This commit is contained in:
Jackson Harper
2022-04-25 15:08:49 -07:00
parent 1f963d64cc
commit 0fd6b84609

View File

@ -116,7 +116,7 @@ export function LibrarySearchBar(props: LibrarySearchBarProps): JSX.Element {
setSearchTerm('')
props.applySearchQuery('')
inputRef.current?.blur()
}} css={{ display: 'flex', flexDirection: 'row', mx: '8px', height: '100%', alignItems: 'center' }}>
}} css={{ display: 'flex', flexDirection: 'row', mr: '8px', height: '100%', alignItems: 'center' }}>
<X width={16} height={16} color={theme.colors.grayTextContrast.toString()} />
</Button>
)}