diff options
Diffstat (limited to 'examples/docs/src/components/Footer/Footer.astro')
-rw-r--r-- | examples/docs/src/components/Footer/Footer.astro | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/docs/src/components/Footer/Footer.astro b/examples/docs/src/components/Footer/Footer.astro deleted file mode 100644 index 8eab03d82..000000000 --- a/examples/docs/src/components/Footer/Footer.astro +++ /dev/null @@ -1,19 +0,0 @@ ---- -import AvatarList from './AvatarList.astro'; -type Props = { - path: string; -}; -const { path } = Astro.props; ---- - -<footer> - <AvatarList path={path} /> -</footer> - -<style> - footer { - margin-top: auto; - padding: 2rem; - border-top: 3px solid var(--theme-divider); - } -</style> |