Remove flex-wrap from tabList class in ExtensionPage

The 'flex-wrap' class was removed from the tabList classNames in the ExtensionPage component, likely to prevent tab items from wrapping onto multiple lines and to maintain a single-line tab layout.
This commit is contained in:
手瓜一十雪 2026-01-30 19:35:46 +08:00
parent 57f3c4dd31
commit 3b7ca1a08f

View File

@ -123,7 +123,7 @@ export default function ExtensionPage () {
selectedKey={selectedTab}
onSelectionChange={(key) => setSelectedTab(key as string)}
classNames={{
tabList: 'bg-white/40 dark:bg-black/20 backdrop-blur-md flex-wrap',
tabList: 'bg-white/40 dark:bg-black/20 backdrop-blur-md',
cursor: 'bg-white/80 dark:bg-white/10 backdrop-blur-md shadow-sm',
panel: 'flex-1 min-h-0 p-0',
}}