summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-05-19 20:47:41 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-05-19 20:47:41 +0900
commitc2c2824e5016c26e4d445bc2c5d6042e760e9776 (patch)
tree31fa7dab617ae11c377e90ae8ad77e78433a0927 /src
parentFix #4945 (diff)
downloadsharkey-c2c2824e5016c26e4d445bc2c5d6042e760e9776.tar.gz
sharkey-c2c2824e5016c26e4d445bc2c5d6042e760e9776.tar.bz2
sharkey-c2c2824e5016c26e4d445bc2c5d6042e760e9776.zip
Fix bug
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/pages/follow-requests.vue17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/client/app/common/views/pages/follow-requests.vue b/src/client/app/common/views/pages/follow-requests.vue
index 860efefd93..146d4b0c94 100644
--- a/src/client/app/common/views/pages/follow-requests.vue
+++ b/src/client/app/common/views/pages/follow-requests.vue
@@ -3,8 +3,8 @@
<ui-container :body-togglable="true">
<template #header>{{ $t('received-follow-requests') }}</template>
<div v-if="!fetching">
- <sequential-entrance animation="entranceFromTop" delay="25" tag="div" class="mcbzkkaw">
- <div v-for="req in requests">
+ <sequential-entrance animation="entranceFromTop" delay="25" tag="div">
+ <div v-for="req in requests" class="mcbzkkaw">
<router-link :key="req.id" :to="req.follower | userPage">
<mk-user-name :user="req.follower"/>
</router-link>
@@ -56,13 +56,12 @@ export default Vue.extend({
<style lang="stylus" scoped>
.mcbzkkaw
- > div
- display flex
- padding 16px
- border solid 1px var(--faceDivider)
- border-radius 4px
+ display flex
+ padding 16px
+ border solid 1px var(--faceDivider)
+ border-radius 4px
- > span
- margin 0 0 0 auto
+ > span
+ margin 0 0 0 auto
</style>