diff --git a/apps/playground/eslint.config.mjs b/apps/playground/eslint.config.mjs index c85fb67..f5b76f3 100644 --- a/apps/playground/eslint.config.mjs +++ b/apps/playground/eslint.config.mjs @@ -1,5 +1,5 @@ -import { dirname } from "path"; -import { fileURLToPath } from "url"; +import { dirname } from "node:path"; +import { fileURLToPath } from "node:url"; import { FlatCompat } from "@eslint/eslintrc"; const __filename = fileURLToPath(import.meta.url); diff --git a/apps/playground/globals.css b/apps/playground/globals.css index 9b606e6..35c14ee 100644 --- a/apps/playground/globals.css +++ b/apps/playground/globals.css @@ -1,10 +1,8 @@ -@import 'tailwindcss'; +@import "tailwindcss"; -/* NOSONAR */ -@plugin '@tailwindcss/forms'; +@plugin '@tailwindcss/forms'; /*NOSONAR*/ -/* NOSONAR */ -@custom-variant dark (&:is(.dark *)); +@custom-variant dark (&:is(.dark *)); /*NOSONAR*/ /* The default border color has changed to `currentcolor` in Tailwind CSS v4, @@ -15,7 +13,6 @@ color utility to any element that depends on these defaults. */ @layer base { - *, ::after, ::before, @@ -23,4 +20,4 @@ ::file-selector-button { border-color: var(--color-gray-200, currentcolor); } -} \ No newline at end of file +}