fix: prevent base.css layout overrides in log reader

Explicitly scope sidebar and reader layout properties so shared base.css main/sidebar rules no longer hide article content on desktop.

Made-with: Cursor
This commit is contained in:
posimai 2026-04-23 18:13:00 +09:00
parent bfa4ecb462
commit bf2d407741
1 changed files with 12 additions and 0 deletions

View File

@ -49,6 +49,15 @@
/* ── Sidebar ── */ /* ── Sidebar ── */
.sidebar { .sidebar {
position: relative;
top: auto;
right: auto;
bottom: auto;
left: auto;
width: auto;
transform: none;
box-shadow: none;
display: block;
border-right: 1px solid var(--border); border-right: 1px solid var(--border);
overflow-y: auto; overflow-y: auto;
padding: 12px 0; padding: 12px 0;
@ -117,6 +126,9 @@
/* ── Reader ── */ /* ── Reader ── */
.reader { .reader {
max-width: none;
width: auto;
margin: 0;
overflow-y: auto; overflow-y: auto;
padding: 40px 48px; padding: 40px 48px;
} }