mirror of
https://github.com/CoolnsX/my-website.git
synced 2025-12-20 15:25:19 +05:30
feat: some UI improvments
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<div class="relative overflow-x-auto shadow-md rounded-lg my-8">
|
||||
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400">
|
||||
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
||||
<table class="w-full text-sm text-left rtl:text-right text-gray-400">
|
||||
<thead class="text-xs text-gray-400 uppercase bg-gray-700">
|
||||
<tr>
|
||||
{% for head in heading %}
|
||||
<th scope="col" class="px-6 py-3">{{ head }}</th>
|
||||
@@ -9,7 +9,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for row in rows %}
|
||||
<tr class="odd:bg-white odd:dark:bg-gray-900 even:bg-gray-50 even:dark:bg-gray-800 border-b dark:border-gray-700 border-gray-200">
|
||||
<tr class="odd:bg-gray-900 even:bg-gray-800 border-b border-gray-700">
|
||||
{% for item in row %}
|
||||
<td class="px-6 py-4">{{ item }}</td>
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user