aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-19 20:41:03 +0900
committernsfisis <nsfisis@gmail.com>2026-02-19 20:41:30 +0900
commitfb58147b4da7b0072e49012f02663589f08628ef (patch)
treecf23ba76a882dd63d25f305d253f2783fdf1e33a
parentcdb2c534992c2829ad2abe61fcf3f69df6bf0891 (diff)
downloadkioku-fb58147b4da7b0072e49012f02663589f08628ef.tar.gz
kioku-fb58147b4da7b0072e49012f02663589f08628ef.tar.zst
kioku-fb58147b4da7b0072e49012f02663589f08628ef.zip
style(ui): hide version footer on mobile
-rw-r--r--src/client/App.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/App.tsx b/src/client/App.tsx
index 8da919d..1e31ca5 100644
--- a/src/client/App.tsx
+++ b/src/client/App.tsx
@@ -45,7 +45,7 @@ export function App() {
<Route component={NotFoundPage} />
</Switch>
</div>
- <footer className="py-2 text-center text-xs text-muted">
+ <footer className="hidden py-2 text-center text-xs text-muted sm:block">
v{__APP_VERSION__}
</footer>
</div>