fix: Optimize scrolling experience on plugin page (#24314) (#24322)

This commit is contained in:
HyaCinth 2025-08-22 16:09:10 +08:00 committed by GitHub
parent 455f842785
commit 09b0dd5583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ const PluginsPanel = () => {
{!isPluginListLoading && (
<>
{(filteredList?.length ?? 0) > 0 ? (
<div className='flex grow flex-wrap content-start items-start justify-center gap-2 self-stretch px-12'>
<div className='flex grow flex-wrap content-start items-start justify-center gap-2 self-stretch overflow-y-auto px-12'>
<div className='w-full'>
<List pluginList={filteredList || []} />
</div>