fix: hidden属性がdisplay:flexに上書きされるバグを修正

This commit is contained in:
posimai 2026-04-03 01:08:38 +09:00
parent 41457b7a43
commit af382b8a0d
1 changed files with 3 additions and 0 deletions

View File

@ -154,6 +154,9 @@
line-height: 1.35;
}
/* hidden 属性が display:flex に上書きされるのを防ぐ */
[hidden] { display: none !important; }
/* ── Markdown content ── */
.md-body { max-width: 680px; }
.md-body h1 { display: none; } /* h1 is shown in post-meta */