this could be a very neat feature since the ai chatbot widget is very small on mobile - and a tiny bit too large on desktop…
1 Like
Hi there, @user32102 ![]()
Thank you so much for the feedback!
We’re currently working on adding this setting for the desktop. Feel free to upvote this idea to get notified about the release - Setting for changing the bubble size.
I also agree that it would be awesome to have a separate setting for mobile and we’ll try to think it over in the future updates ![]()
As for now, you can change the bubble size using these codes in the Custom CSS section on the General tab of your widget’s settings:
Desktop
[class^="FloatingButton__FloatingButtonContainer-sc"] {
scale: 0.7;
}
Mobile:
@media (max-width: 500px) {
[class^="FloatingButton__FloatingButtonContainer-sc"] {
scale: 0.7;
}
}
1 Like