prevent horizontal overscroll on small screens

This commit is contained in:
zombieFox
2021-09-17 12:53:49 +01:00
parent fa48baf911
commit eae18f3674
2 changed files with 2 additions and 3 deletions

View File

@ -27,7 +27,6 @@ body {
} }
body { body {
min-width: 100vw;
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -303,8 +303,8 @@
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100%;
height: 100vh; height: 100%;
overflow: hidden; overflow: hidden;
pointer-events: none; pointer-events: none;
z-index: var(--z-index-background); z-index: var(--z-index-background);