From bf2bc928e8c76b1fb58bb0826b5b0236f0b82260 Mon Sep 17 00:00:00 2001 From: Ignacio Lizana Date: Sun, 28 Sep 2025 02:04:39 +0200 Subject: [PATCH] Removed unused #header-nav style --- src/layouts/Layout.astro | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index c3adc0c9..d9c14c77 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,16 +1,16 @@ --- -import "@fontsource-variable/onest" +import "@fontsource-variable/onest"; -import Header from "../components/Header.astro" -import Footer from "../components/Footer.astro" -import { ViewTransitions } from "astro:transitions" +import Header from "../components/Header.astro"; +import Footer from "../components/Footer.astro"; +import { ViewTransitions } from "astro:transitions"; interface Props { - title: string - description: string + title: string; + description: string; } -const { description, title } = Astro.props +const { description, title } = Astro.props; --- @@ -65,12 +65,6 @@ const { description, title } = Astro.props } } - #header-nav { - animation: blur linear both 0.5s; - animation-timeline: scroll(); - animation-range: 0 500px; - } - @keyframes blur { to { backdrop-filter: blur(20px);