Skip to content

Commit c2b9fef

Browse files
committed
style: add shadow to reply box to match wrapper ui
1 parent b49c0aa commit c2b9fef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/webapp/components/chat/components/send-message/ReplyMessageIndicator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type BtnIcon = React.ComponentProps<'button'> & { $active?: boolean; $size?: num
1010

1111
const IconButton = twx.button<BtnIcon>((props) =>
1212
cn(
13-
'btn btn-square w-8 h-8 btn-xs p-1 mr-2',
13+
'btn btn-square w-8 h-8 btn-xs p-1 ',
1414
props.$active && 'btn-active',
1515
props.$size && `w-${props.$size} h-${props.$size}`
1616
)
@@ -40,7 +40,7 @@ export const ReplyMessageIndicator = () => {
4040
if (replyMessageMemory.channel_id !== channelId) return null
4141

4242
return (
43-
<div className="text-base-content flex w-full items-center justify-between px-4 py-2">
43+
<div className="text-base-content relative -bottom-1 flex w-full items-center justify-between rounded-t-lg border border-b-0 border-gray-200 px-4 py-2 shadow-[0_-2px_6px_-1px_rgba(0,0,0,0.1)]">
4444
<FaReply size={24} />
4545
<div className="text-base-content flex w-full flex-col justify-start pl-3 text-base">
4646
<span className="text-primary font-semibold antialiased">

0 commit comments

Comments
 (0)