Skip to content

Commit

Permalink
Updated css for chatbot help icon
Browse files Browse the repository at this point in the history
  • Loading branch information
aarushsaboo committed Oct 27, 2024
1 parent 83c133f commit ec8e151
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions client/src/components/ChatbotHelp.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.chatbotHelpContainer {
position: fixed;
display: flex;
bottom: 10px; /* Adjust this to where you want the element */
right: 20px; /* Adjust this to where you want the element */
bottom: 10px;
right: 20px;
z-index: 10; /* Ensures it stays on top of other elements */
}

Expand Down Expand Up @@ -190,4 +190,17 @@
width: 14px;
height: 14px;
}
}

@media (min-width:350px){
.chatbotHelpContainer svg:nth-of-type(1){
transform: translate(175px, 0);
}
}

@media (min-width:375px){

.chatbotHelpContainer svg:nth-of-type(1){
transform: translate(175px, 85px);
}
}

0 comments on commit ec8e151

Please sign in to comment.