auth0 / angular-lock

MIT License
18 stars 15 forks source link

rendering issue with safari mobile #38

Closed luisrudge closed 6 years ago

luisrudge commented 6 years ago

related:

Can also reproduce with default sample: https://github.com/auth0-samples/auth0-angularjs-samples/tree/embedded-login/01-Embedded-Login

Removing the bootstrap and custom css didn't fix the issue

dpwoodford commented 6 years ago

For what it's worth, I patched this on our deployments earlier today with the following custom css:

.auth0-lock.auth0-lock .auth0-lock-form { display: initial !important; }

luisrudge commented 6 years ago

@dpwoodford thanks for the snippet. I thought this was an angular-lock issue, but it's not, actually. It just happens on angular apps, but has nothing to do with angular-lock itself. I'm taking this back to the lock repo. Sorry about the confusion.

vladys-k commented 5 years ago

Try to use in the HTML <head> tag or within CSS

<style>
 .auth0-lock-container {
     height: 90vh !important;
 }
</style>