From 141c15f557c577746812cab22a3b5178ad5d0430 Mon Sep 17 00:00:00 2001 From: ClovertaTheTrilobita Date: Mon, 13 Apr 2026 01:57:59 +0300 Subject: [PATCH] fix post title font --- src/components/Posts/PostItem.astro | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/components/Posts/PostItem.astro b/src/components/Posts/PostItem.astro index a060a9a..5a5af12 100644 --- a/src/components/Posts/PostItem.astro +++ b/src/components/Posts/PostItem.astro @@ -134,12 +134,23 @@ const tags = data.tags; } .post-title { + font-family: + system-ui, + -apple-system, + BlinkMacSystemFont, + "Segoe UI", + Roboto, + Oxygen, + Ubuntu, + Cantarell, + "Open Sans", + "Helvetica Neue", + sans-serif; font-weight: 500; font-size: 1.34rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; - color:; -webkit-box-orient: vertical; overflow: hidden; }