fix: ltr avatar on avatar position

This commit is contained in:
patak 2022-12-27 22:48:19 +01:00
parent 26a26ba9f7
commit 4638a38deb
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ const { notification } = defineProps<{
<NuxtLink :to="getAccountRoute(notification.account)">
<div
flex items-center absolute
pl-3 pr-4 lrt-left-0
pl-3 pr-4 left-0 rtl-left-none
rounded-br-3
rtl="pr-3 pl-4 right-0"
rtl-rounded-bl-3

View file

@ -93,7 +93,7 @@ const isSelf = $computed(() => status.account.id === currentUser.value?.account.
<div flex gap-3 :class="{ 'text-secondary': faded }">
<div relative>
<template v-if="showRebloggedByAvatarOnAvatar">
<div absolute top--3px lrt-left--0.8 rtl-right--0.8 z--1 w-25px h-25px rounded-full>
<div absolute top--3px left--0.8 rtl-left-none rtl-right--0.8 z--1 w-25px h-25px rounded-full>
<AccountAvatar :account="rebloggedBy" />
</div>
</template>