From 61359e66659bfb472d9234f906fb299dfde6faa8 Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Tue, 10 Feb 2026 21:06:59 +0100 Subject: [PATCH] style: fix footer position and visibility --- src/App.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 6c0c221..8b20254 100644 --- a/src/App.vue +++ b/src/App.vue @@ -246,10 +246,18 @@ onUnmounted(() => { } .app-version { - margin-top: auto; + position: fixed; + bottom: 0; + left: 0; + width: 100%; + text-align: center; padding: 10px; font-size: 0.8rem; color: var(--text-muted); - opacity: 0.6; + opacity: 0.8; + background: var(--panel-bg); + backdrop-filter: blur(5px); + border-top: 1px solid var(--panel-border); + z-index: 90; } \ No newline at end of file