resize chat bar on mobile [closed]

Use Below CSS to achieve your goal, make min-width of button_bar to auto and hide the button_text

@media (max-width:849px){
   .meshim_widget_components_chatButton_Button .button_bar{min-width:auto;}
   .meshim_widget_components_chatButton_ButtonBar .button_text{display:none;}
}

Thanks