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
How can I stretch the popover to the full width on small devices ? The arrow position should stay near the info icon.
The text was updated successfully, but these errors were encountered:
Did you found a solution? I have same problem.
Sorry, something went wrong.
I solved this by adding .webui-popover { max-width: 100%; } to my styles.
.webui-popover { max-width: 100%; }
But a better solution would be to fix this in the plugin code. The calculated left property should never be negative.
left
Same problem here:
As a fix I have added the following CSS:
@media only screen and (max-width: 480px) { .webui-popover { left:5px !important; } }
Now the popover is not cut off on mobiles:
No branches or pull requests
How can I stretch the popover to the full width on small devices ?
The arrow position should stay near the info icon.
The text was updated successfully, but these errors were encountered: