diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-26 03:43:21 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-07-10 21:01:08 -0400 |
| commit | 38ba5fe028e09a4a64ef7f4f5d4366b0781b13f8 (patch) | |
| tree | 4aeb965a772516bc2ffd97cd8e06fc69f4acd1fe /src/components/user_card/user_card.vue | |
| parent | e503243be377f3e2d83183ec8f9fa0824f3dc446 (diff) | |
change subscribe button to icon button
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 2d3cf28f..013b142d 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -66,11 +66,11 @@ {{ $t('user_card.follow') }} </template> </button> - <ProgressButton class="btn btn-default" :click="subscribeUser" v-if="!user.subscribed"> - {{ $t('user_card.subscribe') }} + <ProgressButton class="btn btn-default" :click="subscribeUser" :title="$t('user_card.subscribe')" v-if="!user.subscribed"> + <i class="icon-bell-off" /> </ProgressButton> - <ProgressButton class="btn btn-default pressed" :click="unsubscribeUser" v-else> - {{ $t('user_card.subscribed') }} + <ProgressButton class="btn btn-default pressed" :click="unsubscribeUser" :title="$t('user_card.subscribed')" v-else> + <i class="icon-bell-alt" /> </ProgressButton> </div> |
