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.
This commit is contained in:
Jp
2026-02-19 03:18:00 +08:00
parent 6eeedbeeb0
commit feba3f1464

View File

@@ -1,11 +1,11 @@
@import "tailwindcss"; @import "tailwindcss";
.fi-btn , .fi-input-wrp, .fi-tabs, .fi-sidebar-item-button { .fi-btn , .fi-input-wrp, .fi-tabs, .fi-sidebar-item-button {
@apply rounded-sm !important; @apply rounded-sm;
} }
.fi-tabs { .fi-tabs {
@apply mx-0 rounded-sm !important; @apply mx-0 rounded-sm;
} }
.fi-resource-relation-managers { .fi-resource-relation-managers {