fix: make tab bar container full width

This commit is contained in:
Anwarul Islam 2025-07-16 23:35:11 +06:00
parent e7344d9120
commit 4e7b088647
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ export function TabBar() {
/>
<div
ref={scrollContainerRef}
className="h-12 bg-panel-accent px-3 flex justify-start items-center gap-5 overflow-x-auto scrollbar-x-hidden relative"
className="h-12 bg-panel-accent px-3 flex justify-start items-center gap-5 overflow-x-auto scrollbar-x-hidden relative w-full"
>
{(Object.keys(tabs) as Tab[]).map((tabKey) => {
const tab = tabs[tabKey];