From 964db27f3e6b81721dee8f271fcb37229b431b96 Mon Sep 17 00:00:00 2001 From: Rodrigo Mesquita <30835404+rrmesquita@users.noreply.github.com> Date: Tue, 15 Jul 2025 04:51:41 -0300 Subject: [PATCH] remove unnecessary default border-color --- resources/css/app.css | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/resources/css/app.css b/resources/css/app.css index 43fdb4ac4..9bf659fc7 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -59,24 +59,6 @@ --color-sidebar-ring: var(--sidebar-ring); } -/* - The default border color has changed to `currentColor` in Tailwind CSS v4, - so we've added these compatibility styles to make sure everything still - looks the same as it did with Tailwind CSS v3. - - If we ever want to remove these styles, we need to add an explicit border - color utility to any element that depends on these defaults. -*/ -@layer base { - *, - ::after, - ::before, - ::backdrop, - ::file-selector-button { - border-color: var(--color-gray-200, currentColor); - } -} - :root { --background: oklch(1 0 0); --foreground: oklch(0.145 0 0);