Skip to content

Commit 995c2a5

Browse files
committed
bigger message btn
1 parent f1ae808 commit 995c2a5

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,10 +116,10 @@ export default function Chatbot() {
116116
<Button
117117
variant="ghost"
118118
size="icon"
119-
className="bg-airlinedarkblue text-gray-50 hover:bg-airlinedarkblue/90 dark:bg-gray-50 dark:text-gray-900 dark:hover:bg-gray-50/90 shadow-lg"
119+
className="bg-airlinedarkblue text-gray-50 hover:bg-airlinedarkblue/90 dark:bg-gray-50 dark:text-gray-900 dark:hover:bg-gray-50/90 shadow-lg !h-12 !w-12"
120120
onClick={() => setIsOpen((prevState) => !prevState)}
121121
>
122-
{isOpen ? <XIcon className="h-6 w-6" /> : <MessageCircleIcon className="h-6 w-6" />}
122+
{isOpen ? <XIcon className="h-8 w-8" /> : <MessageCircleIcon className="h-8 w-8" />}
123123
<span className="sr-only">Open Chatbot</span>
124124
</Button>
125125
</div>

0 commit comments

Comments
 (0)