Update SelectedCounter.tsx

This commit is contained in:
IRBorisov 2024-04-03 22:00:00 +03:00
parent fc70140718
commit 2d707eca72

View File

@ -12,7 +12,7 @@ function SelectedCounter({ totalCount, selectedCount, hideZero, position = 'top-
return null; return null;
} }
return ( return (
<Overlay position={`px-2 ${position}`} className='select-none whitespace-nowrap clr-app'> <Overlay position={`px-2 ${position}`} className='select-none whitespace-nowrap cc-blur rounded-xl'>
Выбор {selectedCount} из {totalCount} Выбор {selectedCount} из {totalCount}
</Overlay> </Overlay>
); );