summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-07-18 20:55:01 +0200
committerGitHub <noreply@github.com>2019-07-18 20:55:01 +0200
commit94d9ebd61c653b43953982f033acc25bb40d4061 (patch)
tree8a39223b9768655a88e56b2769f6396539367fc7
parentbaff2ccdba684e5c412d87e4648158e73265fc41 (diff)
parente1da99af4ca48ea50a449bdb7b1f5ce23f9aa26a (diff)
downloadnextcloud-server-94d9ebd61c653b43953982f033acc25bb40d4061.tar.gz
nextcloud-server-94d9ebd61c653b43953982f033acc25bb40d4061.zip
Merge pull request #16366 from nextcloud/bugfix/noid/filelist-overlap
Fix filelist overlap with header ref #16076
-rw-r--r--apps/files/css/files.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss
index 30f9f4d797a..7a558d7c2ed 100644
--- a/apps/files/css/files.scss
+++ b/apps/files/css/files.scss
@@ -70,7 +70,8 @@
position: -webkit-sticky;
position: sticky;
// header + breadcrumbs
- top: $header-height + 44px;
+ top: $header-height;
+ padding-top: 40px;
// under breadcrumbs, over file list
z-index: 55;
display: block;