angular-bootstrap-lightbox
angular-bootstrap-lightbox copied to clipboard
Center image
Hi, Great module. Is there anyway to configure it to display the images/videos in the center of the screen? I have some images too small and they appear on the top of the screen with just the 30px top margin given by bootstrap.
I had the same problem. Now I center the image with CSS like this:
.modal-full {
margin: auto;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) !important;
}