aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/starlight/PageTitle.astro
diff options
context:
space:
mode:
authorYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-06-19 23:35:46 +0900
committerYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-06-19 23:35:46 +0900
commitda4e7150af05123ff258feaddc980e5db6c03474 (patch)
treeac8f92e4367420e42e079fceec63fbb7cd82460e /src/components/starlight/PageTitle.astro
parent9294d4bab547a07eb17ed0ae28058462b7beaeca (diff)
「」を含む太字を &lt;strong&gt; タグに修正
Diffstat (limited to 'src/components/starlight/PageTitle.astro')
-rw-r--r--src/components/starlight/PageTitle.astro24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/starlight/PageTitle.astro b/src/components/starlight/PageTitle.astro
new file mode 100644
index 0000000..352e1c3
--- /dev/null
+++ b/src/components/starlight/PageTitle.astro
@@ -0,0 +1,24 @@
+---
+import Breadcrumbs from './Breadcrumbs.astro';
+---
+
+{Astro.url.pathname !== "/" && (
+ <>
+ <div id="_top">
+ <Breadcrumbs />
+ </div>
+ <h1>{Astro.locals.starlightRoute.entry.data.title}</h1>
+ </>
+)}
+
+<style>
+ @layer starlight.core {
+ h1 {
+ margin-top: 1rem;
+ font-size: var(--sl-text-h1);
+ line-height: var(--sl-line-height-headings);
+ font-weight: 600;
+ color: var(--sl-color-white);
+ }
+ }
+</style>