Skip to content

Commit 711c2a4

Browse files
committed
fix: adjust padding and margin for improved layout in TextRenderer component
1 parent cf6af9f commit 711c2a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

custom/conversation_area/TextRenderer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<template>
22
<div
3-
class="flex px-4 m-2 rounded-xl border border-gray-200 dark:border-gray-700"
3+
class="flex rounded-xl border border-gray-200 dark:border-gray-700"
44
@click="handleMarkdownLinkClick"
55
:class="[
6-
hasVegaLite ? 'w-full' : '',
6+
hasVegaLite ? 'w-full px-6 my-2' : 'px-4 m-2',
77
props.role === 'user' ? 'bg-lightListTableHeading dark:bg-darkListTableHeading self-end max-w-[80%] mr-4'
88
: 'border-none self-start'
99
]"

0 commit comments

Comments
 (0)