Commit 5ddbe836 authored by Harry Kiselev's avatar Harry Kiselev

Add bottom margin depends on profile tabs visibility.

parent 95491f39
...@@ -221,7 +221,11 @@ ...@@ -221,7 +221,11 @@
} }
.profile-header { .profile-header {
margin: 0 $gl-padding 10px; margin: 0 $gl-padding;
&.with-no-profile-tabs {
margin-bottom: $gl-padding-24;
}
.avatar-holder { .avatar-holder {
width: 90px; width: 90px;
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
= icon('users') = icon('users')
.profile-header .profile-header{ class: [('with-no-profile-tabs' if profile_tabs.empty?)] }
.avatar-holder .avatar-holder
= link_to avatar_icon_for_user(@user, 400), target: '_blank', rel: 'noopener noreferrer' do = link_to avatar_icon_for_user(@user, 400), target: '_blank', rel: 'noopener noreferrer' do
= image_tag avatar_icon_for_user(@user, 90), class: "avatar s90", alt: '' = image_tag avatar_icon_for_user(@user, 90), class: "avatar s90", alt: ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment