From 65c0adfd769b9ef11b897c96a3634c61120055b8 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 8 Dec 2025 00:18:03 +0900 Subject: feat(client): redesign frontend with TailwindCSS v4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace inline styles with TailwindCSS, implementing a cohesive Japanese-inspired design system with custom colors (cream, teal primary), typography (Fraunces, DM Sans), and animations. Update all pages and components with consistent styling, improve accessibility by adding aria-hidden to decorative SVGs, and configure Biome for Tailwind CSS syntax support. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/client/components/DeleteCardModal.tsx | 122 +++++++++++++++--------------- 1 file changed, 62 insertions(+), 60 deletions(-) (limited to 'src/client/components/DeleteCardModal.tsx') diff --git a/src/client/components/DeleteCardModal.tsx b/src/client/components/DeleteCardModal.tsx index 99abbd0..44a745d 100644 --- a/src/client/components/DeleteCardModal.tsx +++ b/src/client/components/DeleteCardModal.tsx @@ -81,18 +81,7 @@ export function DeleteCardModal({ role="dialog" aria-modal="true" aria-labelledby="delete-card-title" - style={{ - position: "fixed", - top: 0, - left: 0, - right: 0, - bottom: 0, - backgroundColor: "rgba(0, 0, 0, 0.5)", - display: "flex", - alignItems: "center", - justifyContent: "center", - zIndex: 1000, - }} + className="fixed inset-0 bg-ink/40 backdrop-blur-sm flex items-center justify-center z-50 p-4 animate-fade-in" onClick={(e) => { if (e.target === e.currentTarget) { handleClose(); @@ -104,56 +93,69 @@ export function DeleteCardModal({ } }} > -
-

- Delete Card -

- - {error && ( -
- {error} +
+
+
+
- )} - -

Are you sure you want to delete this card?

-

"{displayFront}"

-

This action cannot be undone.

- -
- - + Delete Card + + + {error && ( +
+ {error} +
+ )} + +

+ Are you sure you want to delete this card? +

+

+ "{displayFront}" +

+

+ This action cannot be undone. +

+ +
+ + +
-- cgit v1.2.3-70-g09d2