diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/editor/EditorSidebarMainConfiguration.vue | 1 | ||||
| -rw-r--r-- | components/footer/SiteFooter.vue | 14 |
2 files changed, 10 insertions, 5 deletions
diff --git a/components/editor/EditorSidebarMainConfiguration.vue b/components/editor/EditorSidebarMainConfiguration.vue index bf7196b..9ebef0e 100644 --- a/components/editor/EditorSidebarMainConfiguration.vue +++ b/components/editor/EditorSidebarMainConfiguration.vue @@ -28,7 +28,6 @@ const selected = computed(() => { cursor: pointer; padding: 0.5rem 1rem; transition: background-color 0.3s; - border-bottom: 1px solid var(--color-border-soft); max-height: 45px; overflow-y: hidden; 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; |
