We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ae808 commit 995c2a5Copy full SHA for 995c2a5
components/chatbot/ChatBot.tsx
@@ -116,10 +116,10 @@ export default function Chatbot() {
116
<Button
117
variant="ghost"
118
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"
+ 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"
120
onClick={() => setIsOpen((prevState) => !prevState)}
121
>
122
- {isOpen ? <XIcon className="h-6 w-6" /> : <MessageCircleIcon className="h-6 w-6" />}
+ {isOpen ? <XIcon className="h-8 w-8" /> : <MessageCircleIcon className="h-8 w-8" />}
123
<span className="sr-only">Open Chatbot</span>
124
</Button>
125
</div>
0 commit comments