summaryrefslogtreecommitdiff
path: root/examples/docs/src/components/Footer/Footer.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/docs/src/components/Footer/Footer.astro')
-rw-r--r--examples/docs/src/components/Footer/Footer.astro12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/docs/src/components/Footer/Footer.astro b/examples/docs/src/components/Footer/Footer.astro
index 48de51054..d13f832e5 100644
--- a/examples/docs/src/components/Footer/Footer.astro
+++ b/examples/docs/src/components/Footer/Footer.astro
@@ -4,13 +4,13 @@ const { path } = Astro.props;
---
<footer>
- <AvatarList path={path} />
+ <AvatarList {path} />
</footer>
<style>
-footer {
- margin-top: auto;
- padding: 2rem 0;
- border-top: 3px solid var(--theme-divider);
-}
+ footer {
+ margin-top: auto;
+ padding: 2rem 0;
+ border-top: 3px solid var(--theme-divider);
+ }
</style>