Hide chatbot bubble on mobile

Add this code to the Custom CSS field on the General tab of your AI Chatbot widget’s settings:

@media (max-width: 475px) { 
  [class*="ButtonBase__ButtonContainer-sc"] {
    display:none;
  }
}
2 Likes