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