claude-code - 💡(How to fix) Fix [BUG] Dashboard/stats view content is clipped behind sidebar when sidebar is open [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#49117Fetched 2026-04-17 08:50:24
View on GitHub
Comments
1
Participants
2
Timeline
6
Reactions
2
Author
Timeline (top)
labeled ×4commented ×1cross-referenced ×1

Error Message

Error Messages/Logs

Fix Action

Fix / Workaround

Workaround: Hiding the sidebar makes the view render correctly.

RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing issues and this hasn't been reported yet
  • This is a single bug report (please file separate reports for different bugs)
  • I am using the latest version of Claude Code

What's Wrong?

When the sidebar is visible in the Claude Code desktop app, the main content area (dashboard/stats view) does not account for the sidebar width. Content is rendered starting from the left edge of the window instead of from the right edge of the sidebar, causing the left portion of the main view to be clipped/hidden behind the sidebar.

Workaround: Hiding the sidebar makes the view render correctly.

Environment:

OS: macOS (Darwin 24.6.0) App: Claude Code desktop app Version: Claude 1.2773.0 (884b37) 2026-04-15T14:32:09.000Z (Latest Version)

Already tried: Reinstalling the app (deleted and redownloaded) - issue persists No app updates available Switching between models.

See screenshot for bug visual.

What Should Happen?

Expected behavior: The main content area should render to the right of the sidebar, with all stat cards (Messages, Total tokens, Active, Longest streak, Peak hour, Favorite model) and headings fully visible.

Error Messages/Logs

Steps to Reproduce

Steps to reproduce:

Open the Claude Code desktop app Ensure the sidebar is visible (not collapsed) Navigate to the dashboard/stats view ("What's next, Claire?" view with Models, Messages, Total tokens, etc.)

Actual behavior: The main content is clipped on the left side. Headings appear cut off (e.g.

<img width="803" height="449" alt="Image" src="https://github.com/user-attachments/assets/712e2b9d-27a3-4ffe-a7fd-b644d27965e8" />

"next, Claire?" instead of "What's next, Claire?"), the leftmost column of stat cards is hidden behind the sidebar, and the activity grid is partially obscured.

Claude Model

Opus

Is this a regression?

Yes, this worked in a previous version

Last Working Version

1.2773.0

Claude Code Version

2.1.92

Platform

Anthropic API

Operating System

macOS

Terminal/Shell

Terminal.app (macOS)

Additional Information

No response

extent analysis

TL;DR

The issue can likely be fixed by adjusting the CSS layout to account for the sidebar width when rendering the main content area.

Guidance

  • Verify that the issue is indeed related to the sidebar width by checking the CSS styles applied to the main content area and the sidebar.
  • Check if there are any existing CSS classes or IDs that can be used to target the main content area and adjust its layout accordingly.
  • Consider adding a CSS rule to set the margin-left property of the main content area to the width of the sidebar, ensuring that the content is rendered to the right of the sidebar.
  • Review the application's layout logic to determine if there are any conditional statements or functions that handle the rendering of the main content area when the sidebar is visible.

Example

/* Example CSS rule to adjust the main content area layout */
.main-content-area {
  margin-left: 200px; /* assuming the sidebar width is 200px */
}

Notes

The provided information suggests that this is a regression issue, and the problem may be related to changes in the application's layout or CSS styles. However, without access to the application's codebase, it is difficult to provide a more specific solution.

Recommendation

Apply a workaround by adjusting the CSS layout to account for the sidebar width, as this is likely to be a quicker fix than waiting for an official update to the application.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING