diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-08-26 13:08:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 13:08:10 +0200 |
commit | 2fd45e5fc8cd7b8f58d23f00022b3dd627b273b8 (patch) | |
tree | 693cb8052592d1a8bfc5d3bfde70aa64425f7fd4 | |
parent | fcc5f1ef3d5903e326823c5e623ef9928c3c6030 (diff) | |
parent | 8b86a07a3f9c2501222667519c44274271daddee (diff) | |
download | nextcloud-server-2fd45e5fc8cd7b8f58d23f00022b3dd627b273b8.tar.gz nextcloud-server-2fd45e5fc8cd7b8f58d23f00022b3dd627b273b8.zip |
Merge pull request #33707 from nextcloud/bugfix/update-container
Avoid size changes on web ui update
-rw-r--r-- | core/css/guest.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 4a88674df4f..74b7a5571dd 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -625,7 +625,7 @@ p.info { /* Update */ .update { - width: inherit; + width: calc(100% - 32px); text-align: center; } .update .appList { |