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 {
min-width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;

View File

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