fix(ui): improve theme selector dismissal behavior on mobile

This commit is contained in:
spinline
2026-02-01 17:00:41 +03:00
parent 3289f2926d
commit 4fa325f4f3
3 changed files with 19 additions and 1 deletions

View File

@@ -8,4 +8,11 @@
body {
@apply min-h-[100dvh] w-full overflow-hidden bg-base-100 text-base-content overscroll-y-none;
}
}
/* Fix for iOS click/blur events */
@media (hover: none) {
body {
cursor: pointer;
}
}