A Quickfix for ".login-page&.register-page" unwanted scroll
See original GitHub issueI found the issue when I’m trying to use the Latest version of AdminLTE 2.
So I made a quick fix about that after a bit trying.
It’s
.login-page,.register-page{ margin: auto; padding-top: 3%; padding-bottom: 3%; }
This would help someone,
Thanks! 👍
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:8
Top Results From Across the Web
Scrollbar on Login Page where no scrolling is needed
Try adding the following in your app.module to the imports array of your NgModule : IonicModule.forRoot(MyApp, { scrollPadding: false, ...
Read more >How do I Hide the scrollbar in my form - formtitan support
How to fix this? 1- The first thing you should check is that none of the form content is sticking out of its...
Read more >Fix unwanted horizontal scroll and whitespace with Overflow
Sometimes elements on a page can exist outside the viewport, and an unintended side effect can be horizontal or sideways scrolling that ...
Read more >Scroll Bouncing On Your Websites - Smashing Magazine
Scroll bouncing is undesirable if you don't want to see fixed elements on a page move. Some examples include: when you want a...
Read more >Finding/Fixing Unintended Body Overflow - CSS-Tricks
Sometimes I use the “Delete Node” feature of DevTools to remove stuff from the page until the scrollbar goes away. Then I know...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I suggest you can create your own css style file and load it after the Framework css, It’s like
set padding top to 10% to make center box, then set overflow to hidden
.login-page, .register-page { background: #d2d6de; padding-top: 10%; overflow: hidden; }
I’ve tried this, hope this help