diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-11 08:23:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 08:23:09 +0100 |
commit | 106ea9fdaa9ff06c1d49cb0716a454946e0804e6 (patch) | |
tree | 4d49ef90c9f81da883b70080166527098fe0ea8b /core/css | |
parent | 9eb16da35ee927ceb7e4d62a8ae332ef0696f273 (diff) | |
parent | 7e5956a90632fc2904471ce5c25dd3950bf8d8ab (diff) | |
download | nextcloud-server-106ea9fdaa9ff06c1d49cb0716a454946e0804e6.tar.gz nextcloud-server-106ea9fdaa9ff06c1d49cb0716a454946e0804e6.zip |
Merge pull request #18819 from nextcloud/bugfix/guest-container-size
Limit the size of the container on guest pages
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; } |