💄 Added some more colors to the overview.svelte

This commit is contained in:
Mawoka
2022-03-28 18:48:28 +02:00
parent 2a7d9175aa
commit fe494bcb1f
+2 -2
View File
@@ -179,7 +179,7 @@
<td
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400"
>
<a href="/edit?quiz_id={quiz.id}">{$t('words.edit')}</a>
<a href="/edit?quiz_id={quiz.id}" class="border border-yellow-600">{$t('words.edit')}</a>
</td>
<td
class="py-4 px-6 text-sm text-gray-500 whitespace-nowrap dark:text-gray-400"
@@ -188,7 +188,7 @@
on:click={() => {
deleteQuiz(quiz.id);
}}
class="border border-green-600"
class="border border-red-600"
>
{$t('words.delete')}
</button>