changing padding for the leave button on the party page so it will line up with the edit group button

This commit is contained in:
Kelsey Ando 2015-05-14 21:09:41 -04:00
parent 0454938303
commit 0af264ef87
2 changed files with 4 additions and 1 deletions

View file

@ -44,6 +44,9 @@ a.hint:hover
ul
padding-left: 10px
a#btn-leave
margin-top -6px
.group-leave-join
.glyphicon-ban-circle
color: white;

View file

@ -18,7 +18,7 @@ a.pull-right.gem-wallet(ng-if='group.type!="party"', popover-trigger='mouseenter
h3.panel-title
| {{group.name}}
span.group-leave-join(ng-if='group')
a.btn.btn-sm.btn-danger.pull-right(ng-if=":: isMemberOfGroup(User.user._id, group)", ng-click='clickLeave(group, $event)')
a.btn.btn-sm.btn-danger.pull-right#btn-leave(ng-if=":: isMemberOfGroup(User.user._id, group)", ng-click='clickLeave(group, $event)')
span.glyphicon.glyphicon-ban-circle
=env.t('leave')
a.btn.btn-success.pull-right(ng-if=':: !isMemberOfGroup(User.user._id, group)', ng-click='join(group)')=env.t('join')