fix tooltip offset

This commit is contained in:
Matthew Hodgson 2016-04-15 22:24:20 +01:00
parent c98e06e1aa
commit fdf83a5ad5
2 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ module.exports = React.createClass({
});
}
else {
tooltip.style.top = tooltip.parentElement.getBoundingClientRect().top + "px";
tooltip.style.top = (70 + tooltip.parentElement.getBoundingClientRect().top) + "px";
tooltip.style.display = "block";
}
},