From 666443f76ea3499638e9c6dc6f591b5684b7958b Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Mon, 17 Nov 2025 20:44:41 +0100 Subject: [PATCH] Style placeholder text color in account form inputs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added placeholder:text-gray-600 styling to all form inputs (firstName, lastName, address, IBAN) to visually distinguish placeholder text from entered values. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/ui/AccountForm.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/ui/AccountForm.tsx b/app/ui/AccountForm.tsx index f64dcb0..d6e318a 100644 --- a/app/ui/AccountForm.tsx +++ b/app/ui/AccountForm.tsx @@ -57,7 +57,7 @@ const FormFields: FC = ({ profile, errors, message }) => { name="firstName" type="text" placeholder={t("first-name-placeholder")} - className="input input-bordered w-full" + className="input input-bordered w-full placeholder:text-gray-600" defaultValue={profile?.firstName ?? ""} onChange={(e) => handleInputChange("firstName", e.target.value)} disabled={pending} @@ -81,7 +81,7 @@ const FormFields: FC = ({ profile, errors, message }) => { name="lastName" type="text" placeholder={t("last-name-placeholder")} - className="input input-bordered w-full" + className="input input-bordered w-full placeholder:text-gray-600" defaultValue={profile?.lastName ?? ""} onChange={(e) => handleInputChange("lastName", e.target.value)} disabled={pending} @@ -103,7 +103,7 @@ const FormFields: FC = ({ profile, errors, message }) => {