From e2f492ccae9afcc98ae7eb76bb94dc973aed60d8 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sat, 9 May 2026 14:11:33 +0900 Subject: simplize css --- app/routes/band-new.tsx | 114 +++++++++++++++++------------------------------- 1 file changed, 41 insertions(+), 73 deletions(-) (limited to 'app/routes/band-new.tsx') diff --git a/app/routes/band-new.tsx b/app/routes/band-new.tsx index a15ce24..62be1d4 100644 --- a/app/routes/band-new.tsx +++ b/app/routes/band-new.tsx @@ -75,13 +75,13 @@ export default function BandNew() { } return ( -
-
- ← -

New Band

+
+
+ ← +

New Band

-
+
- + { setName(e.target.value); if (!slugManual) setSlug(toSlug(e.target.value)); }} - className="w-full bg-gray-800 border border-gray-700 rounded px-3 py-2 text-gray-100 focus:outline-none focus:border-blue-500" /> - {errors.name &&

{errors.name}

} + {errors.name &&

{errors.name}

}
- + { setSlugManual(true); setSlug(e.target.value); }} - className="w-full bg-gray-800 border border-gray-700 rounded px-3 py-2 text-gray-100 focus:outline-none focus:border-blue-500 font-mono text-sm" + className="mono" /> - {errors.slug &&

{errors.slug}

} + {errors.slug &&

{errors.slug}

}
- - + +
- - @@ -137,23 +125,18 @@ export default function BandNew() {
- -