themyth92 / ngx-lightbox

Lightbox2 use with angular >= 5
MIT License
115 stars 67 forks source link

Zoom changing height of the image #63

Open RSNFreud opened 4 years ago

RSNFreud commented 4 years ago

Instead of zooming in on the image it makes the image larger which stretches the page downwards... Can it be contained inside a modal that will let it scroll while keeping the window the same height

gobicodes commented 3 years ago

Any updates on this ?

pierresh commented 7 months ago

Hello,

I get good results by adding this piece of CSS:

.lb-outerContainer {
    overflow-x: auto;
    overflow-y: auto;
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 100px);
}