// This used to apply raster images as a fallback but it's not needed anymore
// so it's just a wrapper for the background-image property.
.svg-background(@svg; @position: 0% 0%; @repeat: no-repeat) {
  // Separate properties to avoid resetting background-size
  background-image: ~'url("@{svg}.svg")';
  background-position: @position;
  background-repeat: @repeat;
}
