What's the simplest/easiest way to customize labels?

I want all required fields to be color red, and no asterisk. "*"
2 Replies
vahnmarty
vahnmarty13mo ago
Ok I just experimented and (I think) it works:
.filament-forms-field-wrapper-label span:has(> sup) {
color: #800 !important;
}
.filament-forms-field-wrapper-label span:has(> sup) {
color: #800 !important;
}
Patrick Boivin
Patrick Boivin13mo ago
Nice!