Hi Christos,
This usually happens when an element inside the Layout Grid column (like a button) has a fixed or 100% width, which makes it overflow the parent container.
Try changing the width to auto
or fit-content
, and check if any custom styles are causing it. Also, inspect the column and container classes—sometimes they don’t align properly.
Adding overflow: hidden
to the container or wrapping the button in another container can also help.
Hope this helps! 😊
Regards
Reemali