From 44f196080c17599f914ef231f9cb3ce355f6d16b Mon Sep 17 00:00:00 2001 From: Dominic Lee <34794189+dominictwlee@users.noreply.github.com> Date: Mon, 11 Jun 2018 11:00:19 +0100 Subject: [PATCH] Match tavern sidebar UI to party and guild page changes (#10400) * Match tavern sidebar UI to party and guild page changes * Remove extra space at the top of guild's sidebar --- website/client/components/groups/group.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/client/components/groups/group.vue b/website/client/components/groups/group.vue index 28436ff084..738d732f7e 100644 --- a/website/client/components/groups/group.vue +++ b/website/client/components/groups/group.vue @@ -39,7 +39,7 @@ | {{$t('groupNoNotifications')}} .col-12.col-sm-4.sidebar .row(:class='{"guild-background": !isParty}') - .col-12 + .col-12.buttons-wrapper .button-container button.btn.btn-success(class='btn-success', v-if='isLeader && !group.purchased.active', @click='upgradeGroup()') | {{ $t('upgrade') }} @@ -127,6 +127,10 @@ .sidebar { background-color: $gray-600; padding-bottom: 2em; + + } + + .buttons-wrapper { padding-top: 2.8em; }