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-edit.tsx | 112 +++++++++++++++++------------------------------ 1 file changed, 39 insertions(+), 73 deletions(-) (limited to 'app/routes/band-edit.tsx') diff --git a/app/routes/band-edit.tsx b/app/routes/band-edit.tsx index 0a98bd6..2e29277 100644 --- a/app/routes/band-edit.tsx +++ b/app/routes/band-edit.tsx @@ -97,13 +97,13 @@ export default function BandEdit() { } return ( -
-
- ← -

Edit Band

+
+
+ ← +

Edit 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}

}
- - + +
- - @@ -160,24 +147,18 @@ export default function BandEdit() {
- -