achat-maison-albi-fr/src/components/ui/starlight/Head.astro
2024-11-19 18:38:10 +04:00

27 lines
748 B
Text

---
import type { Props } from '@astrojs/starlight/props';
import StarlightHead from '@astrojs/starlight/components/Head.astro';
import VtbotStarlight from 'astro-vtbot/components/starlight/Base.astro';
// https://docs.astro.build/en/guides/view-transitions/#fallback-control
Astro.props.viewTransitionsFallback = "animate";
---
<VtbotStarlight {...Astro.props}>
<StarlightHead {...Astro.props}><slot /></StarlightHead>
<script>
import "@scripts/lenisSmoothScroll.js";
</script>
</VtbotStarlight>
<style is:global>
/* Slow down Chrome's default animation */
::view-transition-group(root) {
animation-duration: 250ms;
}
/* Do not slide over the sidebars */
::view-transition-group(*) {
overflow: hidden;
}
</style>