Fix: Wrap ReaderControls in Scrollable (#63)

This commit is contained in:
Youwes09
2026-05-02 17:58:16 -05:00
parent e625755c5e
commit 5451a2654b
@@ -412,8 +412,7 @@
gap: var(--sp-2); gap: var(--sp-2);
font-size: var(--text-sm); font-size: var(--text-sm);
color: var(--text-muted); color: var(--text-muted);
overflow: hidden; overflow-x: auto;
text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
min-width: 0; min-width: 0;
padding: 2px 4px; padding: 2px 4px;
@@ -421,7 +420,9 @@
background: none; background: none;
cursor: default; cursor: default;
transition: background var(--t-fast); transition: background var(--t-fast);
scrollbar-width: none;
} }
.ch-pill::-webkit-scrollbar { display: none; }
.bar-left .ch-pill, .bar-right .ch-pill { .bar-left .ch-pill, .bar-right .ch-pill {
width: 28px; width: 28px;
height: 28px; height: 28px;
@@ -429,9 +430,9 @@
padding: 0; padding: 0;
} }
.ch-info { font-size: 15px; line-height: 1; color: var(--text-faint); flex-shrink: 0; } .ch-info { font-size: 15px; line-height: 1; color: var(--text-faint); flex-shrink: 0; }
.ch-title { color: var(--text-secondary); font-weight: var(--weight-medium); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .ch-title { color: var(--text-secondary); font-weight: var(--weight-medium); }
.ch-sep { color: var(--text-faint); flex-shrink: 0; } .ch-sep { color: var(--text-faint); flex-shrink: 0; }
.ch-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .ch-name { color: var(--text-muted); }
.ch-page { font-family: var(--font-ui); font-size: var(--text-xs); color: var(--text-muted); letter-spacing: var(--tracking-wide); flex-shrink: 0; } .ch-page { font-family: var(--font-ui); font-size: var(--text-xs); color: var(--text-muted); letter-spacing: var(--tracking-wide); flex-shrink: 0; }
.ch-popover { .ch-popover {