Custom css #2309
Replies: 2 comments 1 reply
-
That is not going to work since the chatbot will render on it own. You need to address this from the source code.
This will generate a new
Here is an example:If you mean the new scrollbar in the text area, I used this. Look much better. textarea::-webkit-scrollbar {
width: 5px;
background-color: #fff !important;
}
textarea::-webkit-scrollbar-thumb {
background-color: #f5f5f5 !important;
border-radius: 5px !important;
}
textarea::-webkit-scrollbar-thumb:hover {
background-color: #f0f0f0 !important;
} |
Beta Was this translation helpful? Give feedback.
-
@toi500 WOW!! So glad I just found this post! This is MASSIVE!!! Thank you so much for your awesome explanation!! Do you happen to know where the value is for the title bar when in full screen embed mode? Thanks 1000000000x |
Beta Was this translation helpful? Give feedback.
-
Hi all,
Is there anybody that knows how to add custom css or overwrite css from Tailwind?
For instance:
Ideally I would like to just have a css file (for instance loaded in the head of my website) that overwrites everything. I also tried changing the index.css and pushing that, but that does not work.
Any ideas?
Thanks!
Stijn
Beta Was this translation helpful? Give feedback.
All reactions