refactor(ui): update component styles for improved consistency; adjust footer and message content rounding, and enhance tab bar padding

This commit is contained in:
Anish Sarkar 2026-04-29 03:55:13 +05:30
parent 65f3916fc3
commit 5374da0092
4 changed files with 5 additions and 5 deletions

View file

@ -89,7 +89,7 @@ export function TabBar({
{leftActions ? <div className="flex items-center gap-0.5 shrink-0">{leftActions}</div> : null}
<div
ref={scrollRef}
className="flex h-8 items-center flex-1 gap-3 overflow-x-auto overflow-y-hidden scrollbar-hide [scrollbar-width:none] [-ms-overflow-style:none] [&::-webkit-scrollbar]:hidden py-0"
className="flex h-8 items-center flex-1 gap-3 pl-2 overflow-x-auto overflow-y-hidden scrollbar-hide [scrollbar-width:none] [-ms-overflow-style:none] [&::-webkit-scrollbar]:hidden py-0"
>
{tabs.map((tab) => {
const isActive = tab.id === activeTabId;