From e347537986bebd63c39db31452769d84989d95bd Mon Sep 17 00:00:00 2001 From: pengzhanbo Date: Mon, 14 Oct 2024 01:25:30 +0800 Subject: [PATCH] feat(theme): reduce the line spacing in the category list (#281) --- theme/src/client/components/Blog/VPShortPostList.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/theme/src/client/components/Blog/VPShortPostList.vue b/theme/src/client/components/Blog/VPShortPostList.vue index a48f9d482..216890328 100644 --- a/theme/src/client/components/Blog/VPShortPostList.vue +++ b/theme/src/client/components/Blog/VPShortPostList.vue @@ -27,7 +27,7 @@ defineProps<{ .vp-blog-short-post-list { display: flex; flex-direction: column; - gap: 16px; + gap: 8px; margin-top: 24px; } @@ -62,6 +62,7 @@ defineProps<{ } .vp-blog-short-post-list li:hover .post-time { - color: var(--vp-c-text-2); + font-weight: 500; + color: var(--vp-c-text-1); }