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
This commit is contained in:
2026-02-03 09:29:03 -05:00
parent 5630dc6196
commit c7475af75d
+4
View File
@@ -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 {