Skip to content

Commit 02ed286

Browse files
robcohenclaude
andcommitted
fix: remove scrollbar from Charts panel views
- Change #chart-container overflow from auto to hidden - Change .chart-area-full min-height from 250px to 0 - Change .chart-area-full overflow from auto to hidden 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent cd0be72 commit 02ed286

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ Thumbs.db
2323

2424
# Logs
2525
*.log
26+
.playwright-mcp/

src/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ body {
527527

528528
#chart-container {
529529
flex: 1;
530-
overflow: auto;
530+
overflow: hidden;
531531
}
532532

533533
.chart-single {
@@ -544,13 +544,13 @@ body {
544544

545545
.chart-area-full {
546546
flex: 1;
547-
min-height: 250px;
547+
min-height: 0;
548548
position: relative;
549549
display: flex;
550550
flex-direction: column;
551551
align-items: center;
552552
justify-content: flex-start;
553-
overflow: auto;
553+
overflow: hidden;
554554
}
555555

556556
.chart-area-full svg {

0 commit comments

Comments
 (0)