mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
17 lines
474 B
Handlebars
Executable File
17 lines
474 B
Handlebars
Executable File
{{#sprites}}
|
|
.{{name}} {
|
|
background-image: url('~@/assets/images/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('~@/assets/images/sprites/{{{escaped_image}}}');
|
|
background-position: {{custom.px.offsetX}} {{custom.px.offsetY}};
|
|
width: {{custom.px.width}};
|
|
height: {{custom.px.height}};
|
|
}
|
|
{{/if}}
|
|
{{/sprites}}
|