Imo it isn’t particularly suitable for mobile screens. It takes up a lot of screen and when scrolling your productloop it partly obscures the products. Imo you are much better off with a sticky footer that has a cart-icon (storefront default) when using WC on mobile.
I like it for desktops and tablets though, that’s why I enabled the plugin and then hidden it for mobile with the following CSS:
@media only screen and (max-width:481px){
div.right.cart-tab.light.visible{
display: none;
}
}