From f758c439788d02b130afec18b7fea4f93c353f8b Mon Sep 17 00:00:00 2001 From: UncaughtCursor Date: Mon, 8 Jan 2024 09:57:55 -0500 Subject: [PATCH] Quartz sync: Jan 8, 2024, 9:57 AM --- quartz/components/PageTitle.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/quartz/components/PageTitle.tsx b/quartz/components/PageTitle.tsx index 81d80d1..4140a0a 100644 --- a/quartz/components/PageTitle.tsx +++ b/quartz/components/PageTitle.tsx @@ -6,7 +6,10 @@ function PageTitle({ fileData, cfg, displayClass }: QuartzComponentProps) { const baseDir = pathToRoot(fileData.slug!) return (

- {title} + + + {title} +

) } @@ -15,6 +18,11 @@ PageTitle.css = ` .page-title { margin: 0; } +.page-title > a > img { + height: 1.75rem; + margin: 0; + margin-right: 0.5rem; +} ` export default (() => PageTitle) satisfies QuartzComponentConstructor