forked from MarseyWorld/MarseyWorld
fix
parent
9ee2957417
commit
51af7fc2f4
|
@ -50,6 +50,7 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody class="bg-gray-100 divide-y divide-gray-300 border-t border-gray-300">
|
||||
{% if ups %}
|
||||
{% for vote in ups %}
|
||||
<tr class="shadow-inset-t-white-05 odd:bg-gray-200">
|
||||
<td class="px-6 py-4 whitespace-nowrap">
|
||||
|
@ -70,6 +71,15 @@
|
|||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<tr class="shadow-inset-t-white-05 odd:bg-gray-200">
|
||||
<td class="px-6 py-4 whitespace-nowrap">
|
||||
<div class="flex items-center">
|
||||
No upvotes yet...
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
@ -80,7 +90,7 @@
|
|||
<h2 class="text-2xl font-heading font-bold">
|
||||
Downvotes
|
||||
</h2>
|
||||
<div class="flex flex-col">
|
||||
<div class="flex flex-col mb-8">
|
||||
<div class="overflow-x-auto">
|
||||
<div class="align-middle inline-block min-w-full">
|
||||
<div class="flex flex-col bg-gray-200 border border-gray-300 rounded overflow-hidden">
|
||||
|
|
Loading…
Reference in New Issue