diff options
author | Julius Härtl <github@jus.li> | 2017-11-09 11:10:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 11:10:46 +0100 |
commit | 7dc9f6f40c6592b0ad554d2776da086a611ba9f7 (patch) | |
tree | 11ad2020171824956d93d1b46ee785be4adbd947 /core | |
parent | 723a25a315f541929527ee09bd22749b1097e567 (diff) | |
parent | 37c60c20cc8c3506e5db81d597218de696117b7e (diff) | |
download | nextcloud-server-7dc9f6f40c6592b0ad554d2776da086a611ba9f7.tar.gz nextcloud-server-7dc9f6f40c6592b0ad554d2776da086a611ba9f7.zip |
Merge pull request #6736 from nextcloud/Dennis1993-patch-1
Move login page more to the top
Diffstat (limited to 'core')
-rw-r--r-- | core/css/guest.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 40940a0feb9..9bacf5a6bb5 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -60,9 +60,6 @@ h3 { } /* Global content */ -#header { - padding-top: 100px; -} #header .logo { background-image: url('../img/logo.svg?v=1'); background-repeat: no-repeat; @@ -85,7 +82,10 @@ h3 { width: 300px; } .v-align { - width: inherit; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } /* Default FORM */ |