diff options
author | Simon L <szaimen@e.mail.de> | 2022-10-02 00:21:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-02 00:21:40 +0200 |
commit | 9d027046827f7ebea18aeeda0f03fe98ee2dc1e7 (patch) | |
tree | 41b63642882942e33fdea7416c7424f3b8c8f803 /core | |
parent | e714524267fbecf800de3fa3f59a87d8117cc0f7 (diff) | |
parent | e7bd935d64e34a13dc6f2a2eb6132d85c556d1cb (diff) | |
download | nextcloud-server-9d027046827f7ebea18aeeda0f03fe98ee2dc1e7.tar.gz nextcloud-server-9d027046827f7ebea18aeeda0f03fe98ee2dc1e7.zip |
Merge pull request #34331 from nextcloud/enh/noid/public-view-fix
fix public view
Diffstat (limited to 'core')
-rw-r--r-- | core/css/public.css | 2 | ||||
-rw-r--r-- | core/css/public.scss | 2 | ||||
-rw-r--r-- | core/css/server.css | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/public.css b/core/css/public.css index 3e8ca2bbb34..2ad3b80c52f 100644 --- a/core/css/public.css +++ b/core/css/public.css @@ -49,7 +49,7 @@ text-align: center; } #body-public footer { - position: fixed; + position: sticky !important; display: flex; align-items: center; justify-content: center; diff --git a/core/css/public.scss b/core/css/public.scss index 0e75a938cfa..514c3fbba70 100644 --- a/core/css/public.scss +++ b/core/css/public.scss @@ -69,7 +69,7 @@ $footer-height: 65px; /* public footer */ footer { - position: fixed; + position: sticky !important; display: flex; align-items: center; justify-content: center; diff --git a/core/css/server.css b/core/css/server.css index da94d3e21eb..014897459dd 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -4998,7 +4998,7 @@ kbd { text-align: center; } #body-public footer { - position: fixed; + position: sticky !important; display: flex; align-items: center; justify-content: center; |