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 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 v-else-if="isFollowing">
<span v-if="full">{{ i18n.ts.unfollow }}</span><i class="ti ti-minus"></i>
@ -24,7 +24,7 @@
</template>
</template>
<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>
</button>
</template>

View file

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