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