react-admin-ui icon indicating copy to clipboard operation
react-admin-ui copied to clipboard

Horizontal Scroll Bar for Users

Open iatulrai opened this issue 1 year ago • 4 comments

Hello LamaDev,

Thanks for sharing these all.

I can see that there is horizontal scroll bar appears on the user screen.

image

iatulrai avatar Jul 22 '23 04:07 iatulrai

on the mobile device

image

iatulrai avatar Jul 22 '23 04:07 iatulrai

Has anyone fixed this issue i am trying to fix but am not able to

Gautam-04 avatar Jul 28 '23 08:07 Gautam-04

@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; }

Martynacodes avatar Aug 04 '23 03:08 Martynacodes

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; }

Agungvpzz avatar Aug 08 '23 15:08 Agungvpzz