diff --git a/meshmap_frontend/src/components/AppFooter.vue b/meshmap_frontend/src/components/AppFooter.vue index 52ae803..7c023fb 100644 --- a/meshmap_frontend/src/components/AppFooter.vue +++ b/meshmap_frontend/src/components/AppFooter.vue @@ -25,5 +25,11 @@ onMounted(async () => { 后端 v{{ backendVersion }} · 提交 {{ commitVersion }} + · + + + diff --git a/meshmap_frontend/src/style.css b/meshmap_frontend/src/style.css index 067f701..66fc55c 100644 --- a/meshmap_frontend/src/style.css +++ b/meshmap_frontend/src/style.css @@ -89,6 +89,17 @@ a { opacity: 0.5; } +.app-footer-github { + display: inline-flex; + align-items: center; + color: var(--color-muted); + transition: color 0.15s ease; +} + +.app-footer-github:hover { + color: var(--color-heading); +} + .topbar { display: flex; align-items: center; diff --git a/meshmap_frontend/src/version.ts b/meshmap_frontend/src/version.ts index 5eb9c8d..cb9e0be 100644 --- a/meshmap_frontend/src/version.ts +++ b/meshmap_frontend/src/version.ts @@ -1 +1 @@ -export const FRONTEND_VERSION = '0.1.1' +export const FRONTEND_VERSION = '0.1.2'