We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338fb26 commit c6c15adCopy full SHA for c6c15ad
src/layouts/Layout.astro
@@ -1,7 +1,7 @@
1
---
2
import "../assets/app.css";
3
import SideNav from "../components/SideNav.astro";
4
-import {ClientRouter, slide} from "astro:transitions";
+import {ClientRouter, fade} from "astro:transitions";
5
6
<!doctype html>
7
<html lang="en">
@@ -15,7 +15,7 @@ import {ClientRouter, slide} from "astro:transitions";
15
</head>
16
<body>
17
<SideNav/>
18
-<main transition:animate={slide({duration: '0.4s'})}>
+<main transition:animate={fade({duration: '0.4s'})}>
19
<slot/>
20
</main>
21
</body>
0 commit comments