fix: hidden属性がdisplay:flexに上書きされるバグを修正
This commit is contained in:
parent
41457b7a43
commit
af382b8a0d
|
|
@ -154,6 +154,9 @@
|
||||||
line-height: 1.35;
|
line-height: 1.35;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* hidden 属性が display:flex に上書きされるのを防ぐ */
|
||||||
|
[hidden] { display: none !important; }
|
||||||
|
|
||||||
/* ── Markdown content ── */
|
/* ── Markdown content ── */
|
||||||
.md-body { max-width: 680px; }
|
.md-body { max-width: 680px; }
|
||||||
.md-body h1 { display: none; } /* h1 is shown in post-meta */
|
.md-body h1 { display: none; } /* h1 is shown in post-meta */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue