[ADF-3815] Fix image render on Viewer Component for IE 11 (#4067)

This commit is contained in:
davidcanonieto
2018-12-10 16:55:05 +00:00
committed by Eugenio Romano
parent 4ad3e162a7
commit 4302cfbd04

View File

@@ -13,6 +13,12 @@
width: 100%;
object-fit: contain;
}
/* query for Microsoft IE 11*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
img {
height: 100%;
}
}
}
&__toolbar {