diff options
author | 2021-07-30 22:39:15 -0700 | |
---|---|---|
committer | 2021-07-30 22:39:15 -0700 | |
commit | 7c744961494ca80f82b3ad66c98ff0a1c0496db7 (patch) | |
tree | 6f0ed586edd85076b2660b3b00c0fbb91f470449 /docs/src/components/Footer/Footer.astro | |
parent | d0b8485ddfd8dca1376ea0d417ce37282d092cd9 (diff) | |
download | astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.tar.gz astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.tar.zst astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.zip |
Docs site cleanup (#948)
* add language selector
* docs site cleanup
* review feedback
* code review comments
Diffstat (limited to 'docs/src/components/Footer/Footer.astro')
-rw-r--r-- | docs/src/components/Footer/Footer.astro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/src/components/Footer/Footer.astro b/docs/src/components/Footer/Footer.astro new file mode 100644 index 000000000..48de51054 --- /dev/null +++ b/docs/src/components/Footer/Footer.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> |