feat(ui): tweak board search UI

This commit is contained in:
psychedelicious 2024-01-03 21:19:11 +11:00 committed by Kent Keirsey
parent 7caaf40835
commit 1fee08639d

View File

@ -67,14 +67,13 @@ const BoardsSearch = () => {
data-testid="board-search-input" data-testid="board-search-input"
/> />
{boardSearchText && boardSearchText.length && ( {boardSearchText && boardSearchText.length && (
<InputRightElement> <InputRightElement h="full" pe={2}>
<InvIconButton <InvIconButton
onClick={clearBoardSearch} onClick={clearBoardSearch}
size="sm" size="sm"
variant="ghost" variant="ghost"
aria-label={t('boards.clearSearch')} aria-label={t('boards.clearSearch')}
opacity={0.5} icon={<CloseIcon boxSize={3} />}
icon={<CloseIcon boxSize={2} />}
/> />
</InputRightElement> </InputRightElement>
)} )}