Hello all.
I am on APEX 23.2. Universal theme, login page template. Building a PWA that should work on mobile phones.
I needed to set the login region 10px away from the top view port. So, I added an inline CSS code…
.t-Login-container{
position: fixed;
top: 10px;
}
And it works fine in portrait direction, but when I change the mobile phone direction to landscape, the region does not scroll down, and some items become inaccessible.
The login region has the following items…
- A text and an image logo
- username
- password
- Remember me
- Create new account
How make it scroll with the page like normal?