Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/web/src/pages/Workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,10 @@ export function Workspace() {

{/* Right Section: Status and Actions — hidden on mobile (the hamburger
handles nav there); these chips otherwise eat the small-screen width. */}
<div className="flex flex-col items-end gap-1.5 md:order-3 md:shrink-0">
<div className="flex flex-col items-stretch gap-1.5 md:order-3 md:shrink-0">
{/* Data-store status (provider-agnostic — keyed off the GraphQL API, which is
the actual data layer; the backing store may be D1, Neo4j, etc.) */}
<div className={`flex items-center gap-2 px-3 py-2 rounded-lg text-xs transition-all cursor-help ${
<div className={`flex items-center justify-center gap-2 px-3 py-2 rounded-lg text-xs transition-all cursor-help ${
health?.services?.graphql?.status === 'healthy'
? 'bg-green-600/20 text-green-300 border border-green-500/30'
: 'bg-red-600/20 text-red-300 border border-red-500/30'
Expand Down
Loading