mirror of
https://github.com/documize/community.git
synced 2025-07-28 09:39:42 +02:00
14 lines
319 B
Handlebars
14 lines
319 B
Handlebars
|
<div class="theme-picker">
|
||
|
{{#each themes as |theme|}}
|
||
|
<div class="theme" style="{{concat 'background-color: ' theme.primary}}" {{action 'onSelect' theme.name}}>
|
||
|
{{theme.name}}
|
||
|
<div class="tick">
|
||
|
{{#if theme.selected}}
|
||
|
✓
|
||
|
{{else}}
|
||
|
|
||
|
{{/if}}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{/each}}
|
||
|
</div>
|