diff options
author | Julius Haertl <jus@bitgrid.net> | 2017-03-03 13:00:10 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-03-16 11:55:10 +0100 |
commit | efc681dcfe330b09123b05a6a61d8dedaf76696e (patch) | |
tree | a3d67fb87a117a3e1a5b5006841234b074d20763 | |
parent | f58f8f6f475424f08180be15ca00e8ee3778247a (diff) | |
download | nextcloud-server-efc681dcfe330b09123b05a6a61d8dedaf76696e.tar.gz nextcloud-server-efc681dcfe330b09123b05a6a61d8dedaf76696e.zip |
Fix positioning of popovermenu
Signed-off-by: Julius Haertl <jus@bitgrid.net>
-rw-r--r-- | core/css/header.scss | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index 5a5d6276e0e..f0030502bca 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -192,9 +192,13 @@ } /* NAVIGATION --------------------------------------------------------------- */ +nav { + margin-top: auto; +} + #navigation { position: relative; - top: 69px; + top: 45px; left: -100%; width: 265px; max-height: 85%; @@ -538,7 +542,7 @@ border-width: 10px; transform: translateX(-50%); left: 50%; - top: 14px; + top: 12px; z-index: 100; display: block; } |