From c6a5e25d061eda6e8f057b6760d8369cac1d54ec Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Thu, 30 Apr 2026 15:29:35 +0100 Subject: [PATCH] fix(ImageUpload): restore :focus styling on alt-text input The alt-text input was hard-coding border/bg via inline style="..." after the phantom-Tailwind sweep, which can't carry pseudo-class rules. Per CLAUDE.md, inputs focus to --candle. Moved to a scoped style block with a real :focus rule. --- app/components/ImageUpload.vue | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/app/components/ImageUpload.vue b/app/components/ImageUpload.vue index bd8a87e..7db4306 100644 --- a/app/components/ImageUpload.vue +++ b/app/components/ImageUpload.vue @@ -77,12 +77,7 @@ @@ -225,3 +220,16 @@ const updateAltText = (altText) => { }); }; + +