Files
DiceCloud/app/client/views/character/stats/statCard/statCard.html
Jonas 49c5a1fcb1 Added adv class to skills in stat cards
Added arrows to initiative, for example
2018-06-18 00:51:20 +02:00

19 lines
510 B
HTML

<template name="statCard">
<div>
<paper-material class="stat-card layout horizontal {{#if bounce}}bounce{{/if}}">
<div class="numbers paper-font-display1">
{{#if isSkill}}
<div class="{{advantage}} skill-mod">
{{prefix}}{{skillMod}}
</div>
{{else}}
{{prefix}}{{characterCalculate "attributeValue" ../_id stat}}
{{/if}}
</div>
<div class="paper-font-subhead title flex layout horizontal center">
{{name}}
</div>
</paper-material>
</div>
</template>