We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom dialog goes to top hiding its upper side behind the screen. I guess it happens because:
@media all and (max-height: 700px) { .dg-content-cont--floating { position: relative; top: 10%; -webkit-transform: none; transform: none; margin-top: 0; }
and on the screens taller than 700px it switches to absolute position with transform:
.dg-content-cont--floating { position: absolute; top: 35%; -webkit-transform: translateY(-70%); transform: translateY(-70%); margin-top: 0; }
And I cannot find the way to override it...
The text was updated successfully, but these errors were encountered:
Hi @symonsoft , were you able to find a solution/workaround?
Sorry, something went wrong.
Nope =(
No branches or pull requests
Custom dialog goes to top hiding its upper side behind the screen. I guess it happens because:
and on the screens taller than 700px it switches to absolute position with transform:
And I cannot find the way to override it...
The text was updated successfully, but these errors were encountered: