ngx-lightbox icon indicating copy to clipboard operation
ngx-lightbox copied to clipboard

Zoom changing height of the image

Open RSNFreud opened this issue 4 years ago • 2 comments

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

RSNFreud avatar Aug 06 '20 11:08 RSNFreud

Any updates on this ?

gobicodes avatar Mar 03 '21 13:03 gobicodes

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

pierresh avatar Jan 29 '24 14:01 pierresh