Merge pull request #1054 from alphagov/ie-product-css-fixes

Fix images on product page in older version of IE
This commit is contained in:
minglis
2016-12-16 15:15:42 +00:00
committed by GitHub

View File

@@ -12,10 +12,16 @@
@extend %site-width-container;
@include media(desktop) {
background-image: file-url('product/proposition-illustration.png');
background-size: 320px;
background-repeat: no-repeat;
background-position: right -14px top -10px;
@include ie-lte(8) {
background-image: none;
}
}
}
@@ -84,7 +90,7 @@
}
img {
max-width: 100%;
width: 100%;
margin: 0 0 $gutter * 1.5 0;
}