From 1377004fcac9235b3ea384c8d3fb8695bf50a615 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 27 Oct 2025 21:38:05 +0000
Subject: [PATCH] chore(deps): bump the production-dependencies group across 1 directory with 6 updates (#2177)
---
quartz/components/PageTitle.tsx | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/quartz/components/PageTitle.tsx b/quartz/components/PageTitle.tsx
index 2362f10..53ee824 100644
--- a/quartz/components/PageTitle.tsx
+++ b/quartz/components/PageTitle.tsx
@@ -7,15 +7,17 @@
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
const baseDir = pathToRoot(fileData.slug!)
return (
- <h1 class={classNames(displayClass, "page-title")}>
+ <h2 class={classNames(displayClass, "page-title")}>
<a href={baseDir}>{title}</a>
- </h1>
+ </h2>
)
}
PageTitle.css = `
.page-title {
+ font-size: 1.75rem;
margin: 0;
+ font-family: var(--titleFont);
}
`
--
Gitblit v1.10.0