PamGram/resources/genshin/player_card/stats.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
288 B
HTML
Raw Normal View History

<div class="rounded-lg overflow-hidden bg-black bg-opacity-20">
{% for (name, value) in stats %}
<div
class="flex justify-between px-10 py-1.5 even:bg-black even:bg-opacity-30"
>
<div>{{ name }}</div>
<div class="italic">{{ value }}</div>
</div>
{% endfor %}
</div>