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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user