feat: implement swipe gesture controls for mobile audio player and enhance theme color handling

This commit is contained in:
2025-07-23 16:10:11 +00:00
committed by GitHub
parent abfe2bb3ef
commit abf29caacb
5 changed files with 63 additions and 19 deletions

View File

@@ -88,6 +88,18 @@
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Hide scrollbars on mobile */
@media (max-width: 768px) {
* {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */
}
*::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
}
}
@layer utilities {