I have successfully embedded the Dialogflow messenger in my website, however, when it is in mobile view, the chat icon kinda blocks the bottom navigation bar (please see screenshot for your preference)
Could anyone tell me how can I move up the chat icon ? I have tried different ways without success
For people who want to change the position of the icon. I have found a solution using javascript
dfMessenger.addEventListener('df-messenger-loaded', function (event) {
dfMessenger.renderCustomText('Welcome to the new and improved version of Dexter');
document.querySelector('df-messenger').shadowRoot.querySelector('.df-messenger-wrapper').querySelector('#widgetIcon').style.bottom = "5vh"
});