forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-30 21:20:48 -06:00
parent 62abab265e
commit c9c6ed2ac2
1 changed files with 4 additions and 1 deletions

View File

@ -182,7 +182,7 @@
{% block content %}
<div class="col-span-full lg:max-w-6xl lg:mx-auto bg-gray-200 dark:bg-gray-800 p-4">
<div class="my-4 p-5 flex items-center divide-x divide-gray-700 rounded-md bg-gray-500 dark:bg-gray-700 shadow-inset-t-white-10 border border-gray-700 dark:border-gray-900">
<div class="my-4 p-5 flex justify-around items-center rounded-md bg-gray-500 dark:bg-gray-700 shadow-inset-t-white-10 border border-gray-700 dark:border-gray-900">
{% for section in stats %}
<div class="px-5">
<div class="text-white dark:text-gray-500 uppercase font-bold text-xs tracking-wider leading-4 mb-2">
@ -194,6 +194,9 @@
<span>{{ section.description }}</span>
</p>
</div>
{% if loop.count != stats.length %}
<div class="border-l border-gray-700 dark:border-gray-900 shadow-inset-r-white-05"></div>
{% endif %}
{% endfor %}
</div>