From c5e41c2577bc9d4c7789dfb8a8becf22306feb02 Mon Sep 17 00:00:00 2001 From: FluxKit Date: Wed, 25 Feb 2026 16:03:49 +0000 Subject: [PATCH] Fix: Input text color in team member modal - use pulse-dark/pulse-text --- src/views/UsersView.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/UsersView.vue b/src/views/UsersView.vue index 224f992..4abed27 100644 --- a/src/views/UsersView.vue +++ b/src/views/UsersView.vue @@ -362,7 +362,7 @@ onMounted(() => { v-model="form.firstName" type="text" required - class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none" + class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none" />
@@ -371,7 +371,7 @@ onMounted(() => { v-model="form.lastName" type="text" required - class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none" + class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none" />
@@ -382,7 +382,7 @@ onMounted(() => { v-model="form.email" type="email" required - class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none" + class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none" /> @@ -394,7 +394,7 @@ onMounted(() => { required minlength="8" placeholder="Mind. 8 Zeichen" - class="w-full px-3 py-2 bg-pulse-bg border border-pulse-border rounded-lg text-white focus:border-primary-500 focus:outline-none" + class="w-full px-3 py-2 bg-pulse-dark border border-pulse-border rounded-lg text-pulse-text placeholder-pulse-muted focus:border-primary-500 focus:outline-none" /> @@ -403,7 +403,7 @@ onMounted(() => {