diff --git a/src/components/account_actions/account_actions.vue b/src/components/account_actions/account_actions.vue index c7641b8a..f99707cc 100644 --- a/src/components/account_actions/account_actions.vue +++ b/src/components/account_actions/account_actions.vue @@ -46,7 +46,7 @@ class="btn btn-default btn-block dropdown-item" @click="unblockUser" > - {{ $t('user_card.blocked') }} + {{ $t('user_card.unblock') }} </button> <button v-else @@ -75,6 +75,9 @@ <style lang="scss"> @import '../../_variables.scss'; @import '../popper/popper.scss'; +.account-actions { + margin: 0 .8em; +} .account-actions button.dropdown-item { margin-left: 0; @@ -83,6 +86,11 @@ color: $fallback--lightText; color: var(--lightText, $fallback--lightText); opacity: .8; + cursor: pointer; + &:hover { + color: $fallback--text; + color: var(--text, $fallback--text); + } } </style> diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 119079b2..aa071a73 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -524,6 +524,7 @@ > * { margin: 0 .75em .6em 0; white-space: nowrap; + min-width: 95px; } button {