From 022f88e65d8c4b1f849f0f4cfbbb13884f4f3a87 Mon Sep 17 00:00:00 2001 From: isamu Date: Sat, 24 Jan 2026 14:39:54 +0900 Subject: [PATCH] fix: replace Tailwind arbitrary values with standard classes Replace JIT/arbitrary Tailwind values with standard classes for compatibility with host app's @source directive scanning. Co-Authored-By: Claude Opus 4.5 --- src/react/View.tsx | 8 ++++---- src/vue/View.vue | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/react/View.tsx b/src/react/View.tsx index 8221f3d..b60e50e 100644 --- a/src/react/View.tsx +++ b/src/react/View.tsx @@ -53,7 +53,7 @@ export function View({ selectedResult, sendTextMessage, onUpdateResult }: ViewPr if (isSelected) { return "border-blue-500 bg-blue-500/20"; } - return "border-[#4b4b6b] hover:border-[#6b6b8b] hover:bg-[#6b6b8b]/20"; + return "border-slate-600 hover:border-slate-500 hover:bg-slate-500/20"; }; const handleSubmit = () => { @@ -79,11 +79,11 @@ export function View({ selectedResult, sendTextMessage, onUpdateResult }: ViewPr } return ( -
+
{/* Quiz Title */} {quizData.title && ( -

+

{quizData.title}

)} @@ -93,7 +93,7 @@ export function View({ selectedResult, sendTextMessage, onUpdateResult }: ViewPr {quizData.questions.map((question, qIndex) => (
{/* Question Text */}
diff --git a/src/vue/View.vue b/src/vue/View.vue index 4ee52ab..64abb36 100644 --- a/src/vue/View.vue +++ b/src/vue/View.vue @@ -1,8 +1,8 @@