fix: waline style bug

This commit is contained in:
radishzzz 2025-03-08 08:01:47 +00:00
parent 6400503cf1
commit 5a87bee474
5 changed files with 296 additions and 272 deletions

View file

@ -26,7 +26,7 @@ const { isHome, isPost } = getPagePath(Astro.url.pathname)
const fontStyle = themeConfig.global.fontStyle === 'serif' ? 'font-serif' : 'font-sans'
const footerMarginClass = isPost && themeConfig.comment?.waline?.serverURL
? 'mt-8'
? 'mt-4'
: 'mt-12'
---