From f89f6aefdbcfefe8c4817addc1b469e52dc9cb46 Mon Sep 17 00:00:00 2001 From: wonder Date: Sun, 31 May 2026 00:22:33 +0800 Subject: [PATCH] fix: add padding-top to prevent header overlapping content --- styles/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles/index.css b/styles/index.css index fee0537..8acc1bd 100644 --- a/styles/index.css +++ b/styles/index.css @@ -22,3 +22,8 @@ header .flex-1 > div:last-child { font-size: 0.5rem; line-height: 1; } + +/* Add padding to content area to avoid header overlap */ +.slidev-layout { + padding-top: 2.5rem; +}