From d9494f92dd55492cac17d04187f860348d58284c Mon Sep 17 00:00:00 2001 From: isUnknown Date: Tue, 17 Mar 2026 10:26:17 +0100 Subject: [PATCH] about blueprint : add h3 in writer --- site/blueprints/pages/about.yml | 4 ++++ src/App.svelte | 8 -------- src/components/layout/Footer.svelte | 5 +++++ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/site/blueprints/pages/about.yml b/site/blueprints/pages/about.yml index 1325293..295e463 100644 --- a/site/blueprints/pages/about.yml +++ b/site/blueprints/pages/about.yml @@ -41,6 +41,10 @@ tabs: extends: blocks/text fields: text: + headings: + - 3 + nodes: + - heading marks: - bold - italic diff --git a/src/App.svelte b/src/App.svelte index 79b67d1..999e4e7 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -158,12 +158,4 @@ background-position: center; background-repeat: no-repeat; } - - :global(.site-footer) { - position: fixed; - bottom: 0; - left: 0; - right: 0; - z-index: 0; - } diff --git a/src/components/layout/Footer.svelte b/src/components/layout/Footer.svelte index 7c27b14..5cc29be 100644 --- a/src/components/layout/Footer.svelte +++ b/src/components/layout/Footer.svelte @@ -118,6 +118,11 @@ .site-footer { width: 100vw; background: #0d0e22; + position: fixed; + bottom: 0; + left: 0; + right: 0; + z-index: -2; } /* --- Main row --- */