fix: Remove vertical scrolling in the tab bar and dashboard and reduce scrollbar height in tab bar

This commit is contained in:
LukeGus
2025-10-22 12:09:35 -05:00
parent f9411bec00
commit ee3101c5c6
3 changed files with 38 additions and 3 deletions

View File

@@ -486,7 +486,7 @@ export function TopNavbar({
>
<div
ref={containerRef}
className="h-full p-1 pr-2 border-r-2 border-dark-border w-[calc(100%-6rem)] flex items-center overflow-x-auto gap-1"
className="h-full p-1 pr-2 border-r-2 border-dark-border w-[calc(100%-6rem)] flex items-center overflow-x-auto overflow-y-hidden skinny-scrollbar gap-1"
>
{tabs.map((tab: TabData, index: number) => {
const isActive = tab.id === currentTab;