💄 Fixed wrong color in dark mode on add-buttons in editor

This commit is contained in:
Mawoka
2023-06-17 13:45:07 +02:00
parent 77cdfc701a
commit 4838fc9f85
+2 -2
View File
@@ -275,7 +275,7 @@
>
<button
type="button"
class="h-full flex justify-center w-full dark:text-black flex-col border-r border-black"
class="h-full flex justify-center w-full flex-col border-r border-black dark:text-white"
on:click={() => {
add_new_question_popup_open = true;
}}
@@ -298,7 +298,7 @@
</button>
<button
type="button"
class="h-full flex justify-center w-full dark:text-black flex-col"
class="h-full flex justify-center w-full dark:text-white flex-col"
on:click={() => {
data.questions = [...data.questions, { ...empy_slide }];
}}