This commit is contained in:
syuilo 2022-12-20 11:06:39 +09:00
parent 6b60acc10a
commit b4b9d5d552
2 changed files with 4 additions and 3 deletions

View file

@ -11,7 +11,7 @@
</template> </template>
<template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"> <template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked">
<!-- つまりリモートフォローの場合 --> <!-- つまりリモートフォローの場合 -->
<span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true"/> <span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true" :colored="false"/>
</template> </template>
<template v-else-if="isFollowing"> <template v-else-if="isFollowing">
<span v-if="full">{{ i18n.ts.unfollow }}</span><i class="ti ti-minus"></i> <span v-if="full">{{ i18n.ts.unfollow }}</span><i class="ti ti-minus"></i>
@ -24,7 +24,7 @@
</template> </template>
</template> </template>
<template v-else> <template v-else>
<span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true"/> <span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true" :colored="false"/>
</template> </template>
</button> </button>
</template> </template>

View file

@ -64,7 +64,8 @@ const props = withDefaults(defineProps<{
} }
&.em { &.em {
display: inline; display: inline-block;
vertical-align: middle;
padding: 0; padding: 0;
--size: 1em; --size: 1em;
} }