Fix overflow
All checks were successful
Deploy new version of the application / Deploy Application (push) Successful in 2s

This commit is contained in:
2025-10-23 01:56:04 +02:00
parent b6c5c42ef3
commit e26ef576ee

View File

@@ -23,7 +23,7 @@ html, body {
background: var(--background-color);
margin: 0;
padding: 0;
overflow-y: auto; /* Hide vertical scrollbar */
overflow-y: hidden; /* Hide vertical scrollbar */
overflow-x: hidden; /* Hide horizontal scrollbar */
height: 100dvh;
}