Skip to content

Commit b24246b

Browse files
committed
Improved nav bar styling
1 parent 8cebe2f commit b24246b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

smart-spreadsheet/src/components/nav-bar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ const navItems = ["Home", "Companies", "Reports"];
77

88
export function NavBar() {
99
return (
10-
<nav className="shrink-0 h-14 px-4 border-b border-border flex items-center justify-between bg-background">
10+
<nav className="shrink-0 h-16 px-4 border-b border-border flex items-center justify-between bg-background">
1111
{/* Left: Logo + Title + Nav Tabs */}
1212
<div className="flex items-center gap-6">
1313
<div className="flex items-center gap-2">
1414
<Table2 className="h-5 w-5 text-primary" />
15-
<span className="font-semibold text-sm tracking-tight">
15+
<span className="font-semibold text-md tracking-tight">
1616
Smart Spreadsheet
1717
</span>
1818
</div>
1919
<div className="flex items-center gap-1">
2020
{navItems.map((label) => (
2121
<button
2222
key={label}
23-
className="px-3 py-1.5 text-sm rounded-md transition-colors text-foreground hover:bg-muted/50"
23+
className="px-3 text-sm text-foreground/50 hover:text-foreground hover:cursor-pointer"
2424
>
2525
{label}
2626
</button>

0 commit comments

Comments
 (0)