fix: changed overflow-hidden to overflow-scroll

This commit is contained in:
zelkim 2025-07-24 10:05:49 +08:00
parent 4b882d005f
commit c1b6400612
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ export function MediaPanel() {
};
return (
<div className="h-full flex flex-col bg-panel rounded-sm overflow">
<div className="h-full flex flex-col bg-panel rounded-sm overflow-scroll">
<TabBar />
<div className="flex-1">{viewMap[activeTab]}</div>
</div>