From b7b8f98c862594e80c6d3a43972aefc686a92b43 Mon Sep 17 00:00:00 2001 From: Jan Stevens Date: Thu, 20 Aug 2015 11:35:00 +0200 Subject: [PATCH] Fixes the _image mixing by prefixing the parameters with $ --- scss/mixins/_image.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/mixins/_image.scss b/scss/mixins/_image.scss index bec9626f60..e5ae10a3c1 100644 --- a/scss/mixins/_image.scss +++ b/scss/mixins/_image.scss @@ -19,7 +19,7 @@ // Short retina mixin for setting background-image and -size. @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) { - background-image: url("#{file-1x}"); + background-image: url($file-1x); @media only screen and (-webkit-min-device-pixel-ratio: 2), @@ -27,7 +27,7 @@ only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { - background-image: url("#{file-2x}"); + background-image: url($file-2x); background-size: $width-1x $height-1x; } }