fix: UI improvements - reduce Android header, hide mobile scrollbar, disable animations in Telegram, consistent menu overlay

This commit is contained in:
c0mrade
2026-02-01 21:22:42 +03:00
parent 093c9f2893
commit 768b340c35
3 changed files with 22 additions and 10 deletions

View File

@@ -134,6 +134,21 @@
scrollbar-color: rgb(var(--color-dark-700)) transparent;
}
/* Hide scrollbar on mobile (iOS/Android) */
@media (max-width: 1023px) {
html,
body {
scrollbar-width: none;
-ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
}
::-webkit-scrollbar {
width: 6px;
height: 6px;