You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really want this to work but am finding difficulty getting it to do what's advertised. When supplying a DOM element, the content seems to be centered over the target instead of pinned to the edge (as would be expected). I also can't seem to override the z-index to put it over the rest of the page (it's going behind my bootstrap nav which is at 1000).
componentDidMount() {
var drop;
drop = new Drop({
target: ReactDOM.findDOMNode(this.refs.signUpTarget),
content: ReactDOM.findDOMNode(this.refs.signUpContainer),
position: 'bottom center',
openOn: 'click',
});
}
React / NPM install tether-drop / v1.4.1
I really want this to work but am finding difficulty getting it to do what's advertised. When supplying a DOM element, the content seems to be centered over the target instead of pinned to the edge (as would be expected). I also can't seem to override the z-index to put it over the rest of the page (it's going behind my bootstrap nav which is at 1000).
The base target:
What I would expect:
What I get:
Here is the full render function:
The text was updated successfully, but these errors were encountered: