Files
habitica/website/assets/sprites/css/css.template.handlebars
T
2016-09-21 09:20:48 -05:00

17 lines
424 B
Handlebars

{{#sprites}}
.{{name}} {
background-image: url(/{{{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-position: {{custom.px.offset_x}} {{custom.px.offset_y}};
width: {{custom.px.width}};
height: {{custom.px.height}};
}
{{/if}}
{{/sprites}}