Skip to content

Commit 2a11d44

Browse files
committed
Standardize top bar heights in the app
1 parent d79539f commit 2a11d44

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/ui-components/src/components/assistant-ui/assistant-top-bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const AssistantTopBar = ({
6060
return (
6161
<div
6262
className={cn(
63-
'flex flex-col px-4 py-2 gap-1 flex-shrink-0 text-md dark:text-primary font-bold border-b border-gray-200',
63+
'flex flex-col px-4 py-2 gap-1 flex-shrink-0 text-md dark:text-primary font-bold border-b border-gray-200 min-h-[60px] justify-center',
6464
)}
6565
>
6666
<div className="flex justify-between items-center gap-2">

packages/ui-components/src/components/page-primitives/page-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const PageHeader = ({
1111
}) => (
1212
<div
1313
className={cn(
14-
'flex items-center justify-between border-b w-full bg-background h-[61px] flex-shrink-0',
14+
'flex items-center justify-between border-b w-full bg-background h-[60px] flex-shrink-0',
1515
className,
1616
)}
1717
>

packages/ui-components/src/components/sidebar/side-menu-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const SideMenuHeader = ({
1313
}) => (
1414
<div
1515
className={cn(
16-
'w-full flex items-center px-6 py-[18px] h-[60px] flex-shrink-0',
16+
'w-full flex items-center px-6 py-[18px] h-[60px] flex-shrink-0 border-b',
1717
className,
1818
)}
1919
>

packages/ui-components/src/components/sidebar/side-menu-navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const SideMenuNavigation = ({
1010
links,
1111
isMinimized,
1212
}: SideMenuNavigationProps) => (
13-
<nav className="flex flex-col w-full gap-1 py-3 px-3 border-t">
13+
<nav className="flex flex-col w-full gap-1 py-3 px-3">
1414
{links.map((link, index) => (
1515
<MenuNavigationItem
1616
to={link.to}

0 commit comments

Comments
 (0)