From 3363396db3e14b4f5645bd0385638d406a8eb774 Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Mon, 14 Aug 2023 18:22:05 +0200 Subject: [PATCH] remove fade transition Signed-off-by: Max Schmidt --- astro/src/layouts/Layout.astro | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/astro/src/layouts/Layout.astro b/astro/src/layouts/Layout.astro index 495ea7d..e287d69 100644 --- a/astro/src/layouts/Layout.astro +++ b/astro/src/layouts/Layout.astro @@ -1,6 +1,7 @@ --- import "@/global.css"; import ViewTransitions from "astro/components/ViewTransitions.astro"; + export interface Props { title: string; } @@ -14,11 +15,9 @@ const { title } = Astro.props; {title} - + -
-