Don’t show hero image on IE8

IE8 doesn’t support background-size, so the image appears too big, the
text overlaps it, and everything becomes a mess.
This commit is contained in:
Chris Hill-Scott
2016-12-10 12:19:01 +00:00
parent 1a75daef55
commit 721837e61c

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