mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
16 lines
474 B
Handlebars
Executable File
16 lines
474 B
Handlebars
Executable File
{{#sprites}}
|
|
.{{name}} {
|
|
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/{{{name}}}.png');
|
|
width: {{px.width}};
|
|
height: {{px.height}};
|
|
}
|
|
{{#if custom}}
|
|
.customize-option.{{name}} {
|
|
background-position: {{custom.px.offsetX}} {{custom.px.offsetY}};
|
|
background-image: url('https://habitica-assets.s3.amazonaws.com/mobileApp/images/{{{name}}}.png');
|
|
width: {{custom.px.width}};
|
|
height: {{custom.px.height}};
|
|
}
|
|
{{/if}}
|
|
{{/sprites}}
|