diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-12 08:55:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 08:55:44 +0100 |
commit | 787aa98b8ad0f4828a26373eaa744d71f6f1f62d (patch) | |
tree | 6c7f61a8bf5925a79b242b7eaf69f96364f85ec0 /core/css | |
parent | 4506868dd44d8ea0b8985e7b59fabe7a269fce5b (diff) | |
parent | 13a6d52cef7d79100997ba67661cb5471e21f8cf (diff) | |
download | nextcloud-server-787aa98b8ad0f4828a26373eaa744d71f6f1f62d.tar.gz nextcloud-server-787aa98b8ad0f4828a26373eaa744d71f6f1f62d.zip |
Merge pull request #18826 from nextcloud/backport/18819/stable18
[stable18] 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; } |