Fix Bulma Mobile View Problem
May 16, 2020
·
1 min read
I’ve been working with bulma for a while. Although the desktop rendering worked well, there were issues with the mobile view:
Problem
- There is like a white border on the right
- The screen is scrollable towards the right (which should not be)
Problem fix
To fix this, add the following code
.columns {
margin: 0;
}
With the above css it should render properly.
Sharing is caring!