Skip to content

Commit

Permalink
Merge pull request #336 from MastanSayyad/main
Browse files Browse the repository at this point in the history
chatbot responsiveness update
  • Loading branch information
Akshatchaube01 committed Jun 26, 2024
2 parents 00317d5 + 2564d1f commit aaa9f8c
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions src/components/chatbot.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.chatbot-container {
position: fixed;

bottom: 20px;
right: 20px;
/* z-index: 1000; Ensure it's above other elements */
z-index: 1000;
}

.chatbot-toggle-button {
Expand All @@ -28,37 +27,36 @@
}

.chatbot {
width: 500px;
max-width: 90%; /* Ensure the chatbot doesn't exceed the screen width */
z-index: 1000; /* Ensure it's above other elements */
width: 400px;
max-width: 90%;
z-index: 1000;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 10px;
position: absolute;
bottom: 10px; /* Adjust position based on the toggle button */
right: 300px; /* Position the chatbot to the left of the button */
position: fixed;
bottom: 80px;
right: 20px;
}

/* Ensure the chatbot does not overflow the screen */
@media (max-width: 300px) {
@media (max-width: 600px) {
.chatbot {
bottom: 60px; /* Adjust based on button size on smaller screens */
right: 10px; /* Adjust to keep it within the screen */
left: 10px; /* Adjust to keep it within the screen */
width: 100%;
bottom: 70px;
right: 0;
left: 45;
}
}

.chatbot-initial {
font-family: Arial, sans-serif; /* Customize font */
font-size: 24px; /* Customize font size */
font-weight: bold; /* Customize font weight */
font-family: Arial, sans-serif;
font-size: 24px;
font-weight: bold;
}

/* Additional styling to ensure text visibility */
.chatbot .react-chatbot-kit-chat-input {
background-color: rgb(224, 221, 221);
color: black; /* Ensure text is visible */
color: black;
}

.chatbot .react-chatbot-kit-chat-input::placeholder {
color: #323131; /* Placeholder color */
color: #323131;
}

0 comments on commit aaa9f8c

Please sign in to comment.