Description
On the Comfy Desktop Dashboard, the instance-card row — New instance / Local instance / Comfy Cloud — is always anchored to the left edge of the content container. The wider the window, the larger the empty space on the right, which is visually inconsistent with the centered logo and search box on the same page.
The ComfyUI editor itself is not affected; only the Dashboard card row shows this behavior.
Environment
- App: Comfy Desktop v1.0.47
- OS: Windows 11, build 10.0.26200 (x64)
- Display / window: 1920 × 1080 (reproducible at other wide window sizes)
Steps to reproduce
- Launch Comfy Desktop v1.0.47 and open the Dashboard.
- Maximize the window (1920 × 1080).
- Compare the instance-card row with the logo / search box above it: the cards hug the left edge of the content area while the logo and search box are centered.
Extra check (rules out responsive layout): hiding the Comfy Cloud card (2 cards remain) does not change anything — the row is still left-aligned.
Root cause
Traced via --remote-debugging-port=9222 + DevTools:
- The card-row container is
display: grid with justify-content: start.
- The grid tracks have a fixed width (280 px per card), so the whole track group is packed against the start (left) edge and all leftover space goes to the right.
- The logo / search box sit under a parent that uses
justify-content: center, which is why they center correctly. The mismatch between the two containers causes the visual inconsistency.
Suggested fix
Center the card-row container:
justify-content: center;
/* or, to stay overflow-safe on narrow viewports: */
justify-content: safe center;
Screenshots
- Default state — 3 cards left-aligned at 1920 × 1080
- Cloud card hidden — 2 cards still left-aligned
- DevTools — card-row container showing
display: grid; justify-content: start
- After applying
justify-content: center in DevTools — cards centered

Description
On the Comfy Desktop Dashboard, the instance-card row — New instance / Local instance / Comfy Cloud — is always anchored to the left edge of the content container. The wider the window, the larger the empty space on the right, which is visually inconsistent with the centered logo and search box on the same page.
The ComfyUI editor itself is not affected; only the Dashboard card row shows this behavior.
Environment
Steps to reproduce
Extra check (rules out responsive layout): hiding the Comfy Cloud card (2 cards remain) does not change anything — the row is still left-aligned.
Root cause
Traced via
--remote-debugging-port=9222+ DevTools:display: gridwithjustify-content: start.justify-content: center, which is why they center correctly. The mismatch between the two containers causes the visual inconsistency.Suggested fix
Center the card-row container:
Screenshots
display: grid; justify-content: startjustify-content: centerin DevTools — cards centered