summaryrefslogtreecommitdiff
path: root/src/components/ui/input.tsx
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-19 16:03:55 +0200
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-19 16:03:55 +0200
commitcdc736b4823a3dda97f2b49c04b8ef7321e7a254 (patch)
tree7834c10be8864477343f95b034ab1d2c357aa0a7 /src/components/ui/input.tsx
parent293df20781b8f0ae6fcbabb1a33b3d1752e494c8 (diff)
add settings page
Diffstat (limited to 'src/components/ui/input.tsx')
-rw-r--r--src/components/ui/input.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx
index 7dd5b62..f645f98 100644
--- a/src/components/ui/input.tsx
+++ b/src/components/ui/input.tsx
@@ -12,7 +12,10 @@ export function Input({ className, isPassword, ...props }: any) {
<input
{...props}
type={isPassword ? (show ? 'text' : 'password') : props.type}
- className={cn('w-full outline-none', className)}
+ className={cn(
+ 'w-full outline-none placeholder-light-violet',
+ className,
+ )}
/>
{isPassword && (
<span