File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ export default function Chatbot() {
116
116
< Button
117
117
variant = "ghost"
118
118
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 "
120
120
onClick = { ( ) => setIsOpen ( ( prevState ) => ! prevState ) }
121
121
>
122
122
{ isOpen ? < XIcon className = "h-6 w-6" /> : < MessageCircleIcon className = "h-6 w-6" /> }
@@ -126,7 +126,7 @@ export default function Chatbot() {
126
126
127
127
{ isOpen && (
128
128
< 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 " >
130
130
< CardHeader className = "flex flex-row items-center" >
131
131
< div className = "flex items-center space-x-4" >
132
132
< Avatar >
You can’t perform that action at this time.
0 commit comments