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/DeleteDeckModal.tsx | 125 +++++++++++++++--------------- 1 file changed, 61 insertions(+), 64 deletions(-) (limited to 'src/client/components/DeleteDeckModal.tsx') diff --git a/src/client/components/DeleteDeckModal.tsx b/src/client/components/DeleteDeckModal.tsx index 307451c..5a252e6 100644 --- a/src/client/components/DeleteDeckModal.tsx +++ b/src/client/components/DeleteDeckModal.tsx @@ -75,18 +75,7 @@ export function DeleteDeckModal({ role="dialog" aria-modal="true" aria-labelledby="delete-deck-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(); @@ -98,60 +87,68 @@ export function DeleteDeckModal({ } }} > -
-

- Delete Deck -

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

- Are you sure you want to delete {deck.name}? -

-

- This action cannot be undone. All cards in this deck will also be - deleted. -

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

+ Are you sure you want to delete{" "} + {deck.name}? +

+

+ This action cannot be undone. All cards in this deck will also be + deleted. +

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