From c7475af75d8d7e7afc01644c3edad80a3f9d58cc Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 3 Feb 2026 09:29:03 -0500 Subject: [PATCH] fix: suppress editor warnings for Tailwind at-rules - Add eslint-disable comments around @tailwind directives - Resolves 'Unknown at rule @tailwind' warnings in CSS editors - Comments clearly mark tailwindcss section for maintainability --- web/static/input.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/static/input.css b/web/static/input.css index c208a8c..8342430 100644 --- a/web/static/input.css +++ b/web/static/input.css @@ -1,6 +1,10 @@ +/* tailwindcss start - suppress at-rule warnings */ +/* eslint-disable */ @tailwind base; @tailwind components; @tailwind utilities; +/* eslint-enable */ +/* tailwindcss end */ @layer base { :root {