header size
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2024-09-08 21:22:41 +03:00
parent 7154af060d
commit 942c5f16f1
No known key found for this signature in database
GPG Key ID: A3F0AC3F0FA52F3C
2 changed files with 7 additions and 3 deletions

View File

@ -14,7 +14,7 @@ const Backlinks: QuartzComponent = ({
const backlinkFiles = allFiles.filter((file) => file.links?.includes(slug))
return backlinkFiles.length <= 0 ? null : (
<div class={classNames(displayClass, "backlinks")}>
<h2>{i18n(cfg.locale).components.backlinks.title}</h2>
<h3>{i18n(cfg.locale).components.backlinks.title}</h3>
<ul class="overflow">
{backlinkFiles.map((f) => (
<li key={f.slug}>

View File

@ -51,14 +51,18 @@ li.section-li>.section .meta {
padding: 3px 3px 6px;
}
h1 {
font-size: 1.8rem;
}
h2 {
margin-top: 6rem;
font-size: 2rem;
font-size: 1.6rem;
}
h3 {
margin-top: 4rem;
font-size: 1.5rem;
font-size: 1.4rem;
}
h4 {