diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 23:44:54 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 23:44:54 +0000 |
| commit | e1ff3b44a55349dad8c07de690ca86c984c91469 (patch) | |
| tree | 7280462dc0aa1f7e24f3b48edef9d83dad3748f2 /components/footer | |
| parent | 9ea8892c906ea8ee9a7644f9f126a1c2377e1c98 (diff) | |
Add GPL-3.0 license
Diffstat (limited to 'components/footer')
| -rw-r--r-- | components/footer/SiteFooter.vue | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/components/footer/SiteFooter.vue b/components/footer/SiteFooter.vue index 4204fab..2f31e4f 100644 --- a/components/footer/SiteFooter.vue +++ b/components/footer/SiteFooter.vue @@ -6,7 +6,7 @@ const runtimeConfig = useRuntimeConfig(); <template> <footer id="footer"> <p id="copyright-license"> - + Released under the GPL-3.0 License. </p> <p id="git-commit-hash"> <font-awesome-icon :icon="['fas', 'code-branch']" /> @@ -24,12 +24,19 @@ const runtimeConfig = useRuntimeConfig(); <style lang="scss" scoped> #footer { - max-height: 40px; - padding: 0.5rem; + height: 30px; + max-height: 30px; border-top: 1px solid var(--color-border-soft); display: flex; width: 100%; justify-content: space-between; + font-size: 0.8rem; + align-items: center; + padding: 0 0.5rem; +} + +#copyright-license { + color: var(--color-text-mute); } #git-commit-hash { @@ -37,7 +44,6 @@ const runtimeConfig = useRuntimeConfig(); color: var(--color-text-mute); align-items: center; gap: 0.3rem; - align-self: flex-end; a { text-decoration: none; |
