SVG fix for IE

This commit is contained in:
Raphael Goetter 2016-09-27 16:10:21 +02:00
parent ca871aa492
commit 857267c397
4 changed files with 28 additions and 22 deletions

View file

@ -46,3 +46,10 @@
hyphens: manual;
}
}
// SVG width IE fix
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
img[src$=".svg"] {
width: 100%;
}
}