Hey Toon,
Try this and let me know if it works for you!
.mx-name-profileScrollContainer {
// This forces the container to never be wider than its parent
max-width: 100% !important;
// As an alternative, you can force it to the viewport width
// width: 100vw !important;
}
Hi Toon,
try the below one and let me know if that works for you
.scrollContainer { width: 100%;}
@media screen and (orientation: portrait) { .scrollContainer { max-width: 780px; }}
@media screen and (orientation: landscape) { .scrollContainer { max-width: 1688px; }}