diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-12 12:32:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 12:32:58 +0200 |
commit | bc142f41ad643905ae48b8ea909ccb28752a4f00 (patch) | |
tree | dd994841babf936d3df2531a0236b311e6440408 /apps | |
parent | 1f7e769ed6ce1e7fe6b093c0e77a3f281b8c8ad3 (diff) | |
parent | c5ab8fa361d4776b4279a74af32177088896f650 (diff) | |
download | nextcloud-server-bc142f41ad643905ae48b8ea909ccb28752a4f00.tar.gz nextcloud-server-bc142f41ad643905ae48b8ea909ccb28752a4f00.zip |
Merge pull request #33993 from nextcloud/remove-scrollbar-default-dashbord
Improve dashboard default scrollbar behavior
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dashboard/src/DashboardApp.vue | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/dashboard/src/DashboardApp.vue b/apps/dashboard/src/DashboardApp.vue index 3cc719dad4c..b9fce59268b 100644 --- a/apps/dashboard/src/DashboardApp.vue +++ b/apps/dashboard/src/DashboardApp.vue @@ -440,7 +440,7 @@ export default { text-align: center; font-size: 32px; line-height: 130%; - padding: 10vh 16px 0px; + padding: 1rem 0; } } @@ -540,8 +540,7 @@ export default { display: flex; justify-content: center; transition: bottom var(--animation-slow) ease-in-out; - bottom: 0; - padding: 44px 0; + padding: 1rem 0; } .edit-panels { @@ -684,9 +683,6 @@ export default { </style> <style> html, body { - overflow: auto; - position: static; - height: auto; background-attachment: fixed; } @@ -695,7 +691,6 @@ html, body { } #content { - height: auto; overflow: auto; position: static !important;; } |