vertical alignment
This commit is contained in:
parent
77546e7fc8
commit
555490a6f0
@ -754,10 +754,10 @@ export const OrchestratorPage: React.FC = () => {
|
|||||||
<div className="flex flex-col gap-3 lg:flex-row lg:items-center lg:justify-between">
|
<div className="flex flex-col gap-3 lg:flex-row lg:items-center lg:justify-between">
|
||||||
<TabsList className="h-9 w-full lg:w-auto">
|
<TabsList className="h-9 w-full lg:w-auto">
|
||||||
{tabs.map((tab) => (
|
{tabs.map((tab) => (
|
||||||
<TabsTrigger key={tab.id} value={tab.id} className="flex-1 lg:flex-none gap-1.5">
|
<TabsTrigger key={tab.id} value={tab.id} className="flex-1 flex items-center lg:flex-none gap-1.5">
|
||||||
{tab.label}
|
<span>{tab.label}</span>
|
||||||
{counts[tab.id] > 0 && (
|
{counts[tab.id] > 0 && (
|
||||||
<span className="text-[10px] tabular-nums opacity-60">{counts[tab.id]}</span>
|
<span className="text-[10px] mt-[2px] tabular-nums opacity-60">{counts[tab.id]}</span>
|
||||||
)}
|
)}
|
||||||
</TabsTrigger>
|
</TabsTrigger>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user