Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-10-03 13:33:45 +0300
committerJulius Härtl <jus@bitgrid.net>2022-10-03 13:33:45 +0300
commit0c6c535f504015192c3fb57b0521b512c26d26f9 (patch)
treed4c35e7ad0ffd75ea49beef5696a21d22fbdc2e0
parentf0553280947173995fd615d936684964fa43cc1c (diff)
Fix positioning of the public page footer
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--core/css/public.css2
-rw-r--r--core/css/public.scss2
-rw-r--r--core/css/server.css2
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/public.css b/core/css/public.css
index 2ad3b80c52f..3e8ca2bbb34 100644
--- a/core/css/public.css
+++ b/core/css/public.css
@@ -49,7 +49,7 @@
text-align: center;
}
#body-public footer {
- position: sticky !important;
+ position: fixed;
display: flex;
align-items: center;
justify-content: center;
diff --git a/core/css/public.scss b/core/css/public.scss
index 514c3fbba70..0e75a938cfa 100644
--- a/core/css/public.scss
+++ b/core/css/public.scss
@@ -69,7 +69,7 @@ $footer-height: 65px;
/* public footer */
footer {
- position: sticky !important;
+ position: fixed;
display: flex;
align-items: center;
justify-content: center;
diff --git a/core/css/server.css b/core/css/server.css
index 014897459dd..da94d3e21eb 100644
--- a/core/css/server.css
+++ b/core/css/server.css
@@ -4998,7 +4998,7 @@ kbd {
text-align: center;
}
#body-public footer {
- position: sticky !important;
+ position: fixed;
display: flex;
align-items: center;
justify-content: center;