fix(sprites): use correct URL in CSS

This commit is contained in:
Sabe Jones
2016-09-16 22:54:52 +00:00
parent c7fd6701ae
commit 8b83d8d4e9
@@ -1,13 +1,13 @@
{{#sprites}}
.{{name}} {
background-image: url({{{escaped_image}}});
background-image: url(/assets/sprites/{{{escaped_image}}});
background-position: {{px.offset_x}} {{px.offset_y}};
width: {{px.width}};
height: {{px.height}};
}
{{#if custom}}
.customize-option.{{name}} {
background-image: url({{{escaped_image}}});
background-image: url(/assets/sprites/{{{escaped_image}}});
background-position: {{custom.px.offset_x}} {{custom.px.offset_y}};
width: {{custom.px.width}};
height: {{custom.px.height}};