Avatar styling

This commit is contained in:
andrewwallacespeckle
2025-03-19 22:46:39 +00:00
parent 7460bca6bb
commit 1b494dee20
6 changed files with 25 additions and 25 deletions
@@ -24,13 +24,7 @@
>
<template #name="{ item }">
<div class="flex items-center gap-2">
<UserAvatar
hide-tooltip
:user="item.user"
light-style
class="bg-foundation"
no-bg
/>
<UserAvatar hide-tooltip :user="item.user" />
<span class="truncate text-body-xs text-foreground">
{{ item.user.name }}
</span>
@@ -29,14 +29,7 @@
>
<template #name="{ item }">
<div class="flex items-center gap-2">
<UserAvatar
v-if="item.user"
hide-tooltip
:user="item.user"
light-style
class="bg-foundation"
no-bg
/>
<UserAvatar v-if="item.user" hide-tooltip :user="item.user" />
<span class="truncate text-body-xs text-foreground">{{ item.title }}</span>
</div>
</template>
@@ -17,13 +17,7 @@
>
<template #name="{ item }">
<div class="flex items-center gap-2">
<UserAvatar
hide-tooltip
:user="item.user"
light-style
class="bg-foundation"
no-bg
/>
<UserAvatar hide-tooltip :user="item.user" />
<span class="truncate text-body-xs text-foreground">
{{ item.user.name }}
</span>
@@ -41,7 +41,13 @@
>
<template #name="{ item }">
<div class="flex items-center gap-2">
<UserAvatar hide-tooltip :user="item.user" />
<UserAvatar
hide-tooltip
:user="item.user"
light-style
class="bg-foundation"
no-bg
/>
<span class="truncate text-body-xs text-foreground">
{{ item.user.name }}
</span>
@@ -29,7 +29,14 @@
>
<template #name="{ item }">
<div class="flex items-center gap-2">
<UserAvatar v-if="item.user" hide-tooltip :user="item.user" />
<UserAvatar
v-if="item.user"
hide-tooltip
:user="item.user"
light-style
class="bg-foundation"
no-bg
/>
<span class="truncate text-body-xs text-foreground">{{ item.title }}</span>
<CommonBadge
rounded
@@ -17,7 +17,13 @@
>
<template #name="{ item }">
<div class="flex items-center gap-2">
<UserAvatar hide-tooltip :user="item.user" />
<UserAvatar
hide-tooltip
:user="item.user"
light-style
class="bg-foundation"
no-bg
/>
<span class="truncate text-body-xs text-foreground">
{{ item.user.name }}
</span>