From bf2d407741b2c40b7ea88ba3a0bdf7c1df7364ee Mon Sep 17 00:00:00 2001 From: posimai Date: Thu, 23 Apr 2026 18:13:00 +0900 Subject: [PATCH] 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 --- index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/index.html b/index.html index f94aa39..a1d7d1b 100644 --- a/index.html +++ b/index.html @@ -49,6 +49,15 @@ /* ── 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); overflow-y: auto; padding: 12px 0; @@ -117,6 +126,9 @@ /* ── Reader ── */ .reader { + max-width: none; + width: auto; + margin: 0; overflow-y: auto; padding: 40px 48px; }