diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-01-10 17:09:40 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-01-10 17:09:40 +0100 |
commit | 7e5956a90632fc2904471ce5c25dd3950bf8d8ab (patch) | |
tree | b4bacf83584ae4fb7415c9c0a389a1fa600c8598 /core/css | |
parent | 4b28da1dd9a6acf4f04b69474f18ce883323caa3 (diff) | |
download | nextcloud-server-7e5956a90632fc2904471ce5c25dd3950bf8d8ab.tar.gz nextcloud-server-7e5956a90632fc2904471ce5c25dd3950bf8d8ab.zip |
Limit the size of the container on guest pages
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/guest.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 15bb83f576c..26c8fbc9ccd 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -99,7 +99,8 @@ body { } .wrapper { - max-width: 100%; + width: 100%; + max-width: 700px; margin-top: 10vh; } |