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.
18 lines
265 B
CSS
18 lines
265 B
CSS
@import "tailwindcss";
|
|
|
|
.fi-btn , .fi-input-wrp, .fi-tabs, .fi-sidebar-item-button {
|
|
@apply rounded-sm;
|
|
}
|
|
|
|
.fi-tabs {
|
|
@apply mx-0 rounded-sm;
|
|
}
|
|
|
|
.fi-resource-relation-managers {
|
|
@apply gap-y-0;
|
|
}
|
|
|
|
.fi-ta-ctn {
|
|
@apply rounded-t-none rounded-b-sm;
|
|
}
|