From 4a7525d0a136d2a96bd077127c7ce54d3c766fc0 Mon Sep 17 00:00:00 2001 From: Arthur Date: Sat, 4 Apr 2026 17:50:04 +0200 Subject: [PATCH] Fix mobile navigation media query (#5749) Co-authored-by: Creeperkatze <178587183+Creeperkatze@users.noreply.github.com> --- apps/frontend/src/layouts/default.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/layouts/default.vue b/apps/frontend/src/layouts/default.vue index 6ef59f08c..3e1733bc2 100644 --- a/apps/frontend/src/layouts/default.vue +++ b/apps/frontend/src/layouts/default.vue @@ -1471,13 +1471,13 @@ const { cycle: changeTheme } = useTheme() } } -@media (any-hover: none) and (max-width: 640px) { +@media (pointer: coarse) and (max-width: 640px) { .desktop-only { display: none; } } -@media (any-hover: none) and (max-width: 640px) { +@media (pointer: coarse) and (max-width: 640px) { .mobile-navigation { display: flex; }