feat: tag filter adapte to scrolling (#6819)

This commit is contained in:
kimjion 2024-07-31 13:55:32 +08:00 committed by GitHub
parent 936ac8826d
commit 8904745129
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -113,7 +113,7 @@ const TagFilter: FC<TagFilterProps> = ({
<div className='p-2 border-b-[0.5px] border-black/5'>
<SearchInput white value={keywords} onChange={handleKeywordsChange} />
</div>
<div className='p-1'>
<div className='p-1 max-h-72 overflow-auto'>
{filteredTagList.map(tag => (
<div
key={tag.id}