fix margin if content is empty
This commit is contained in:
parent
e900b794d3
commit
40dc6a140d
|
@ -59,3 +59,7 @@
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.profile--follow-btn {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
|
@ -1,11 +1,11 @@
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
- type ||= :nil
|
- type ||= :nil
|
||||||
- if user == current_user
|
- if user == current_user
|
||||||
%a.btn.btn-default.btn-block{href: edit_user_profile_path} Edit profile
|
%a.btn.btn-default.btn-block.profile--follow-btn{href: edit_user_profile_path} Edit profile
|
||||||
- else
|
- else
|
||||||
- if current_user.following? user
|
- if current_user.following? user
|
||||||
%button#editprofile.btn.btn-default.btn-block{type: :button, name: 'user-action', data: { action: :unfollow, type: type, target: user.screen_name }}
|
%button#editprofile.btn.btn-default.btn-block.profile--follow-btn{type: :button, name: 'user-action', data: { action: :unfollow, type: type, target: user.screen_name }}
|
||||||
Unfollow
|
Unfollow
|
||||||
- else
|
- else
|
||||||
%button#editprofile.btn.btn-primary.btn-block{type: :button, name: 'user-action', data: { action: :follow, type: type, target: user.screen_name }}
|
%button#editprofile.btn.btn-primary.btn-block.profile--follow-btn{type: :button, name: 'user-action', data: { action: :follow, type: type, target: user.screen_name }}
|
||||||
Follow
|
Follow
|
Loading…
Reference in New Issue