Change size of the chat icon on mobile

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

@media(max-width: 500px) {
  .global-styles, [class^='FloatingButton__FloatingButtonContainer-sc'] {
    transform: scale(0.8)
  }
}

Hello Max,

How can I make the icons on my desktop smaller?

Thanks

Hi there, @Fabio :waving_hand:

You just need to replace the max-width with min-width in the code:

@media(min-width: 500px) {
  .global-styles, [class^='FloatingButton__FloatingButtonContainer-sc'] {
    transform: scale(0.8)
  }
}

Hi Max,

It was simple

Thanks :slightly_smiling_face: