Fix double border in profile page

This commit is contained in:
Yoginth 2019-06-19 17:31:05 +00:00 committed by Annabel Dunstone Gray
parent 1136761371
commit a2c373f9ef
3 changed files with 6 additions and 2 deletions

View File

@ -199,7 +199,6 @@
&.user-cover-block {
padding: 24px 0 0;
border-bottom: 1px solid $border-color;
.nav-links {
width: 100%;

View File

@ -9,7 +9,7 @@
= auto_discovery_link_tag(:atom, user_url(@user, format: :atom), title: "#{@user.name} activity")
.user-profile
.cover-block.user-cover-block
.cover-block.user-cover-block{ class: [('border-bottom' if profile_tabs.empty?)] }
.cover-controls
- if @user == current_user
= link_to profile_path, class: 'btn btn-default has-tooltip', title: s_('UserProfile|Edit profile'), 'aria-label': 'Edit profile' do

View File

@ -0,0 +1,5 @@
---
title: Fix Double Border in Profile Page
merge_request: 29784
author: Yoginth <@yo>
type: fixed