This commit is contained in:
pa
2026-03-24 17:17:59 +09:00
parent 7e9d46ffde
commit 88699cb233
5 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@
<Spinner v-if="isLoading" />
<RefreshCw v-else />
</Button>
<span v-if="filteredEventCount > 0" class="text-accent-foreground ml-1">
<span v-if="filteredEventCount > 0" class="text-accent-foreground ml-1 text-sm">
{{ t('dialog.user.activity.total_events', { count: filteredEventCount }) }}
</span>
</div>

View File

@@ -22,7 +22,7 @@
<Spinner v-if="userDialog.isAvatarsLoading" />
<RefreshCw v-else />
</Button>
<span style="margin-left: 6px">{{
<span class="ml-1.5 text-sm">{{
t('dialog.user.avatars.total_count', { count: userDialogAvatars.length })
}}</span>
</div>

View File

@@ -10,11 +10,11 @@
<Spinner v-if="userDialog.isGroupsLoading" />
<RefreshCw v-else />
</Button>
<span style="margin-left: 6px">{{
<span class="ml-1.5 text-sm">{{
t('dialog.user.groups.total_count', { count: userDialog.userGroups.groups.length })
}}</span>
<template v-if="userDialogGroupEditMode">
<span class="text-[10px]" style="margin-left: 8px">{{ t('dialog.user.groups.hold_shift') }}</span>
<span class="text-[10px] ml-2">{{ t('dialog.user.groups.hold_shift') }}</span>
</template>
</div>
<div style="display: flex; align-items: center">

View File

@@ -10,7 +10,7 @@
<Spinner v-if="userDialog.isMutualFriendsLoading" />
<RefreshCw v-else />
</Button>
<span class="inline-flex items-center gap-1 ml-1.5">
<span class="inline-flex items-center gap-1 ml-1.5 text-sm">
<Users class="size-3.5 text-muted-foreground" />
{{ t('dialog.user.groups.total_count', { count: userDialog.mutualFriends.length }) }}
</span>

View File

@@ -10,7 +10,7 @@
<Spinner v-if="userDialog.isWorldsLoading" />
<RefreshCw v-else />
</Button>
<span style="margin-left: 6px">{{
<span class="ml-1.5 text-sm">{{
t('dialog.user.worlds.total_count', { count: userDialog.worlds.length })
}}</span>
</div>