mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
16 lines
422 B
Handlebars
16 lines
422 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}}
|