Merge branch '36185-or-separator' into 'master'

Aligns OR separater to center properly

Closes #36185

See merge request !13446
This commit is contained in:
Phil Hughes 2017-08-10 10:25:44 +00:00
commit 53ee38053c
2 changed files with 9 additions and 5 deletions

View File

@ -566,14 +566,14 @@ a.deploy-project-label {
&::before {
content: "OR";
position: absolute;
left: 0;
top: 40%;
left: -10px;
top: 50%;
z-index: 10;
padding: 8px 0;
text-align: center;
background-color: $white-light;
color: $gl-text-color-tertiary;
transform: translateX(-50%);
transform: translateY(-50%);
font-size: 12px;
font-weight: bold;
line-height: 20px;
@ -581,8 +581,8 @@ a.deploy-project-label {
// Mobile
@media (max-width: $screen-xs-max) {
left: 50%;
top: 10px;
transform: translateY(-50%);
top: 0;
transform: translateX(-50%);
padding: 0 8px;
}
}

View File

@ -0,0 +1,4 @@
---
title: Align OR separator to center in new project page
merge_request:
author: