angular-bootstrap-lightbox icon indicating copy to clipboard operation
angular-bootstrap-lightbox copied to clipboard

Center image

Open icruces opened this issue 9 years ago • 1 comments

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.

icruces avatar Oct 19 '15 09:10 icruces

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;
}

wintermute42 avatar Feb 18 '16 17:02 wintermute42