[bugfix] change page width to prevent scrollbar overflow (#1182)

This commit is contained in:
f0x52 2022-11-30 13:15:33 +01:00 committed by GitHub
parent cfa8d7900c
commit a1dda22672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ body {
display: grid;
min-height: 100%;
min-width: 100%;
width: 100vw;
width: 100%;
grid-template-columns: auto minmax(auto, 90ch) auto;
grid-template-columns: auto min(92%, 90ch) auto;