From feba3f1464b0f7556aab4fa43fff0a6841cbb6f1 Mon Sep 17 00:00:00 2001 From: Jp Date: Thu, 19 Feb 2026 03:18:00 +0800 Subject: [PATCH] style: remove unnecessary !important from CSS utility classes The !important flag was previously used to override Tailwind's default styles, but it is no longer needed after recent framework updates. This change improves maintainability and follows CSS best practices by avoiding excessive specificity. --- resources/css/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/css/app.css b/resources/css/app.css index 3a41b3e..79cbb34 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -1,11 +1,11 @@ @import "tailwindcss"; .fi-btn , .fi-input-wrp, .fi-tabs, .fi-sidebar-item-button { - @apply rounded-sm !important; + @apply rounded-sm; } .fi-tabs { - @apply mx-0 rounded-sm !important; + @apply mx-0 rounded-sm; } .fi-resource-relation-managers {