Skip to content

Commit 4638a38

Browse files
committed
fix: ltr avatar on avatar position
1 parent 26a26ba commit 4638a38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/notification/NotificationCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { notification } = defineProps<{
1212
<NuxtLink :to="getAccountRoute(notification.account)">
1313
<div
1414
flex items-center absolute
15-
pl-3 pr-4 lrt-left-0
15+
pl-3 pr-4 left-0 rtl-left-none
1616
rounded-br-3
1717
rtl="pr-3 pl-4 right-0"
1818
rtl-rounded-bl-3

components/status/StatusCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const isSelf = $computed(() => status.account.id === currentUser.value?.account.
9393
<div flex gap-3 :class="{ 'text-secondary': faded }">
9494
<div relative>
9595
<template v-if="showRebloggedByAvatarOnAvatar">
96-
<div absolute top--3px lrt-left--0.8 rtl-right--0.8 z--1 w-25px h-25px rounded-full>
96+
<div absolute top--3px left--0.8 rtl-left-none rtl-right--0.8 z--1 w-25px h-25px rounded-full>
9797
<AccountAvatar :account="rebloggedBy" />
9898
</div>
9999
</template>

0 commit comments

Comments
 (0)