diff options
| -rw-r--r-- | src/components/Footer.astro | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index cbec3c8..f67432e 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,16 +1,14 @@ <footer> - <a href="https://github.com/pinapelz">github</a> · <a - href="mailto:yukais@pinapelz.com">email</a - > · <a href="https://microblog.pinapelz.com/">microblog</a> - <p>powered by Astro</p> + <a href="https://github.com/pinapelz">github</a> · <a href="mailto:yukais@pinapelz.com">email</a> + <p>powered by Astro</p> </footer> <style> - footer { - padding: 25px; - text-align: center; - } - footer p { - margin-top: 10px; - font-size: 0.8em; - } + footer { + padding: 25px; + text-align: center; + } + footer p { + margin-top: 10px; + font-size: 0.8em; + } </style> |
