diff options
author | Mike Greiling <mike@pixelcog.com> | 2016-12-28 08:05:17 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2016-12-28 08:06:30 -0600 |
commit | a051d32645a22e0da5834e3df6c281b51f63701c (patch) | |
tree | fb86928ccf627dc0446898a58c72a2f30c7582a4 | |
parent | 0499431ab9fa90abe3fa46f4e45dafa442fe227b (diff) | |
download | gitlab-ce-a051d32645a22e0da5834e3df6c281b51f63701c.tar.gz |
fix left border in session tabs
-rw-r--r-- | app/assets/stylesheets/pages/login.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/login.scss b/app/assets/stylesheets/pages/login.scss index dd27a06fcd2..712bd3da22f 100644 --- a/app/assets/stylesheets/pages/login.scss +++ b/app/assets/stylesheets/pages/login.scss @@ -105,19 +105,19 @@ li { flex: 1; text-align: center; + border-left: 1px solid $border-color; &:first-of-type { + border-left: none; border-top-left-radius: $border-radius-default; } &:last-of-type { - border-left: 1px solid $border-color; border-top-right-radius: $border-radius-default; } &:not(.active) { background-color: $gray-light; - border-left: 1px solid $border-color; } a { |