[frontend] Improve overscroll behavior

This commit is contained in:
Lilian 2025-02-02 14:23:15 +01:00
parent a374c5e8c2
commit 9e43594019
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View file

@ -4,6 +4,7 @@
flex-direction: column; flex-direction: column;
width: 100%; width: 100%;
overflow-x: auto; overflow-x: auto;
overscroll-behavior: contain;
} }
.wrapper { .wrapper {

View file

@ -20,8 +20,9 @@
--accent-color: linear-gradient(to right, #9A92FF, #8372F5); --accent-color: linear-gradient(to right, #9A92FF, #8372F5);
--notice-color: #92c1ff; --notice-color: #92c1ff;
--font-color: #e7edff; --font-color: #e7edff;
--link: #9E9EFF --link: #9E9EFF;
overscroll-behavior: none;
} }