Combined floating badge desktop layout not matched on mobile

  • Issue description: Top left position for floating badge reverts to bottom center on mobile. How can this be changed?

  • Link to the page with the widget in question:

Hi there, @Olivier_R :waving_hand:

This was made by design, but you can easily change the mobile positioning of the badge with the CSS code. Just replace your current CSS code with the new one and you’ll be fine :wink:

 @media (max-width: 480px) {
  .slide-in-position-container {
    padding-left: 40px;
    padding-top: 120px;
    align-items: revert;
    justify-content: revert;
    transform: scale(0.5);
    transform-origin: left top;
  }
}