Hey! I’m not sure if the forums was the best place for this question, so please correct me if I’m doing anything wrong.
So I want to have my popover fixed in the center of the screen. Here is my styling code I’m using to do so.
.popover {
position: fixed;
top: 50%;
left: 50%;
margin-top: -125px;
margin-left: -100px;
height: 250px;
width: 200px;
}
The only problem with this is, the position of the popover is always 25 pixels below the button used to show it. And it is centered below it as well, so it can’t be moved left or right, or up and down. I tried to change the CSS in the ionic.css file, but I was met with the same result. Is there any file or css I can change to override this?