When I click on the button, a popover appears.
However, the pointer of the popover seems to be coming from a different direction.
I have been struggling to correct this issue. Any suggestions?
.popover {
position: absolute;
top: 50px;
left: -175px;
width: 400px;
height: 200px;
background-color: rgb(233, 212, 222);
border-radius: 4px;
box-shadow: 3px -2px 4px #AAA;
transition: all linear 0.5s;
}
.popover-arrow {
position: absolute;
top: -16px;
left: 180px;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid rgb(233, 212, 222);
width: 0;
height: 0;
transition: all linear 0.01s;
}
plnkr: http://plnkr.co/edit/SiwYgmkZjh2NuszI0q2E
The expected behavior is for the pointer of the popover to animate in the same way as the popover itself (from top to bottom)