diff options
Diffstat (limited to 'web/cobrands/sass/_mixins.scss')
-rw-r--r-- | web/cobrands/sass/_mixins.scss | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/web/cobrands/sass/_mixins.scss b/web/cobrands/sass/_mixins.scss index 08e36e86a..392739db8 100644 --- a/web/cobrands/sass/_mixins.scss +++ b/web/cobrands/sass/_mixins.scss @@ -206,14 +206,7 @@ $right: right; order: $order; } -@mixin high-dpi-background-image($path) { +@mixin svg-background-image($path) { background-image: url("#{$path}.png"); - - @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { - background-image: url("#{$path}@2x.png"); - } - - @media screen { - background-image: url("#{$path}.svg"), none; - } + background-image: url("#{$path}.svg"), none; } |