diff options
author | 2022-11-30 13:15:33 +0100 | |
---|---|---|
committer | 2022-11-30 13:15:33 +0100 | |
commit | a1dda2267260472aa777ef42d9d2f5c36df648f3 (patch) | |
tree | ca5e51a793d3683735260defc92bb8b0aca7804e /web/source/css | |
parent | [bugfix] don't return error during account serialize on deleted emoji (#1177) (diff) | |
download | gotosocial-a1dda2267260472aa777ef42d9d2f5c36df648f3.tar.xz |
[bugfix] change page width to prevent scrollbar overflow (#1182)
Diffstat (limited to 'web/source/css')
-rw-r--r-- | web/source/css/base.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/source/css/base.css b/web/source/css/base.css index 73014de8d..023f0ced8 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -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; |