fix(desktop): top-align empty sessions placeholder

The "Start a chat to build your history." empty state used a min-h-35 grid place-items-center container, which floated the text in a tall dead zone. Render it as a flat paragraph that sits right under the section header like the empty pinned state does.
This commit is contained in:
Brooklyn Nicholson 2026-05-08 07:57:45 -04:00
parent 2d0aa1b7cb
commit b3e7133da1

View file

@ -280,9 +280,7 @@ function SidebarSessionSkeletons() {
function SidebarEmptySessionState() {
return (
<div className="grid min-h-35 place-items-center rounded-lg px-3 text-center text-xs text-muted-foreground">
Start a chat to build your history.
</div>
<p className="rounded-lg px-3 py-1.5 text-xs text-muted-foreground/80">Start a chat to build your history.</p>
)
}