Updated mobile UX

This commit is contained in:
root
2025-05-18 17:14:56 +02:00
parent e3205d500d
commit b33b172644
11 changed files with 785 additions and 562 deletions

View File

@@ -7,6 +7,7 @@ body {
transition:
background-color 0.3s ease,
color 0.3s ease;
-webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}
html.theme-transition * {
@@ -23,3 +24,16 @@ body.dark-mode {
html.dark {
color-scheme: dark;
}
/* Mobile touch improvements */
@media (max-width: 640px) {
input,
select,
button {
font-size: 16px !important; /* Prevent iOS zoom on focus */
}
.touch-manipulation {
touch-action: manipulation; /* Improve touch responsiveness */
}
}