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
When using ANY|top or ANY|bottom with ns-popover-placement the Triangle is positioned essentially at top:0, or bottom:0.
ANY|top
ANY|bottom
ns-popover-placement
top:0
bottom:0
This is EXACTLY what's happening, but it's the end-result.
As a solution, I was able to correct with:
.ns-popover-tooltip-theme { &.ns-popover-top-align { .ns-popover-tooltip { margin-top: -$popover-triangle-size; } } &.ns-popover-bottom-align { .ns-popover-tooltip { margin-bottom: -$popover-triangle-size; } } }
The key trick is offsetting by -$popover-triangle-size
-$popover-triangle-size
I think this is an easy fix and doesn't need much testing to merge in.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using
ANY|top
orANY|bottom
withns-popover-placement
the Triangle is positioned essentially attop:0
, orbottom:0
.This is EXACTLY what's happening, but it's the end-result.
As a solution, I was able to correct with:
The key trick is offsetting by
-$popover-triangle-size
I think this is an easy fix and doesn't need much testing to merge in.
The text was updated successfully, but these errors were encountered: