fix: Fix bubble design in RTL (#10683)

Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
Shivam Mishra
2025-01-15 00:44:13 +05:30
committed by GitHub
parent b3d0d466ee
commit 7b31b5ad6e
8 changed files with 76 additions and 19 deletions

View File

@@ -13,13 +13,10 @@ const readableTime = computed(() =>
<template>
<BaseBubble
class="px-2 py-0.5 !rounded-full flex items-center gap-2"
v-tooltip.top="readableTime"
class="px-2 py-0.5 !rounded-full flex min-w-0 items-center gap-2"
data-bubble-name="activity"
>
<span v-dompurify-html="content" :title="content" class="truncate" />
<div v-if="readableTime" class="w-px h-3 rounded-full bg-n-slate-7" />
<time class="text-n-slate-10 truncate flex-shrink" :title="readableTime">
{{ readableTime }}
</time>
<span v-dompurify-html="content" :title="content" />
</BaseBubble>
</template>