fix: permanent top bar

This commit is contained in:
bryan
2026-03-04 19:08:20 -08:00
parent 917c7706ea
commit 5b7727cfd1
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -79,11 +79,11 @@ export default function Home() {
};
return (
<div className="min-h-screen bg-background flex flex-col">
<div className="h-screen bg-background flex flex-col overflow-hidden">
<TopBar />
{/* Main content */}
<div className="flex-1 flex flex-col items-center justify-center p-6">
<div className="flex-1 flex flex-col items-center p-6 overflow-y-auto pt-[15vh]">
<div className="w-full max-w-2xl">
{/* Queen Bee greeting */}
<div className="text-center mb-8">
+2 -2
View File
@@ -41,11 +41,11 @@ export default function MyAgents() {
const idleCount = agents.length - activeCount;
return (
<div className="min-h-screen bg-background flex flex-col">
<div className="h-screen bg-background flex flex-col overflow-hidden">
<TopBar />
{/* Content */}
<div className="flex-1 p-6 md:p-10 max-w-5xl mx-auto w-full">
<div className="flex-1 p-6 md:p-10 max-w-5xl mx-auto w-full overflow-y-auto">
<div className="flex items-center justify-between mb-8">
<div>
<h1 className="text-xl font-semibold text-foreground">My Agents</h1>