fix: Fix bubble overflow issue and color (#10674)

This commit is contained in:
Shivam Mishra
2025-01-11 23:32:24 +05:30
committed by GitHub
parent 0d90e7c158
commit 74870bec41
2 changed files with 5 additions and 2 deletions

View File

@@ -24,5 +24,8 @@ const formattedContent = computed(() => {
</script>
<template>
<span v-dompurify-html="formattedContent" class="prose prose-bubble" />
<span
v-dompurify-html="formattedContent"
class="prose prose-bubble break-words"
/>
</template>