Skip to content

Commit a2336b4

Browse files
committed
added shadow to box
1 parent 6a44196 commit a2336b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/chatbot/ChatBot.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default function Chatbot() {
116116
<Button
117117
variant="ghost"
118118
size="icon"
119-
className="bg-gray-900 text-gray-50 hover:bg-gray-900/90 dark:bg-gray-50 dark:text-gray-900 dark:hover:bg-gray-50/90"
119+
className="bg-gray-900 text-gray-50 hover:bg-gray-900/90 dark:bg-gray-50 dark:text-gray-900 dark:hover:bg-gray-50/90 shadow-lg"
120120
onClick={() => setIsOpen((prevState) => !prevState)}
121121
>
122122
{isOpen ? <XIcon className="h-6 w-6" /> : <MessageCircleIcon className="h-6 w-6" />}
@@ -126,7 +126,7 @@ export default function Chatbot() {
126126

127127
{isOpen && (
128128
<div className="fixed inset-0 z-50 flex items-end justify-end p-4 sm:p-6 bottom-[50px]">
129-
<Card className="w-full max-w-md border-2 border-grey-400">
129+
<Card className="w-full max-w-md border-2 border-grey-400 shadow-lg">
130130
<CardHeader className="flex flex-row items-center">
131131
<div className="flex items-center space-x-4">
132132
<Avatar>

0 commit comments

Comments
 (0)