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
<Popover>
See above
The child continues to fill the parent width even when wrapped in a as the target
Fix the popover spans to prevent this. In my code I'm using
span.bp3-popover-wrapper, span.bp3-popover-target { width: 100%; }
in a bunch of places to fix :(
The text was updated successfully, but these errors were encountered:
@mitchbeard I think switching to div instead of span for your target element will fix this, try targetTagName="div" on the popover
targetTagName="div"
Sorry, something went wrong.
i just ran into this issue as well - perhaps worth noting in the docs?
Add note about popover filling width
3461e28
Fixes #2931
Successfully merging a pull request may close this issue.
Environment
Steps to reproduce
<Popover>
(as the click target, not the popover content)Actual behavior
See above
Expected behavior
The child continues to fill the parent width even when wrapped in a as the target
Possible solution
Fix the popover spans to prevent this. In my code I'm using
in a bunch of places to fix :(
The text was updated successfully, but these errors were encountered: