react-admin-ui
react-admin-ui copied to clipboard
Horizontal Scroll Bar for Users
Hello LamaDev,
Thanks for sharing these all.
I can see that there is horizontal scroll bar appears on the user screen.
on the mobile device
Has anyone fixed this issue i am trying to fix but am not able to
@iatulrai for the homepage background color not filling the entire screen, the global.scss
file needs to be updated by adding the background-color to the contentContainer:
.contentContainer { padding: 5px 20px; width: 100%; background-color: $main-bg; }
that Issue (blank white screen) appears when children's elements oversize the parent element's size.
Try this code below:
.contentContainer { padding: 5px 20px; width: 100%; Overflow: auto; }