Center the header logo
Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
parent
f4d4113240
commit
edcc3285ee
2 changed files with 6 additions and 1 deletions
|
@ -2,6 +2,7 @@ Please view this file on the master branch, on stable branches it's out of date.
|
||||||
|
|
||||||
v 8.13.0 (unreleased)
|
v 8.13.0 (unreleased)
|
||||||
- Use gitlab-shell v3.6.2 (GIT TRACE logging)
|
- Use gitlab-shell v3.6.2 (GIT TRACE logging)
|
||||||
|
- Fix centering of custom header logos (Ashley Dumaine)
|
||||||
- AbstractReferenceFilter caches project_refs on RequestStore when active
|
- AbstractReferenceFilter caches project_refs on RequestStore when active
|
||||||
- Speed-up group milestones show page
|
- Speed-up group milestones show page
|
||||||
- Log LDAP lookup errors and don't swallow unrelated exceptions. !6103 (Markus Koller)
|
- Log LDAP lookup errors and don't swallow unrelated exceptions. !6103 (Markus Koller)
|
||||||
|
|
|
@ -112,11 +112,15 @@ header {
|
||||||
.header-logo {
|
.header-logo {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -18px;
|
|
||||||
top: 7px;
|
top: 7px;
|
||||||
transition-duration: .3s;
|
transition-duration: .3s;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
position: relative;
|
||||||
|
left: -50%;
|
||||||
|
}
|
||||||
|
|
||||||
svg, img {
|
svg, img {
|
||||||
height: 36px;
|
height: 36px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue