© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•17mo ago•
10 replies
Matthew

Themes and CSS and Hook Classes

Am I right in thinking using the fi hook classes and custom theme, I still wouldn't be able to influence classes like this one:

I'm trying to move a hintaction to be right next to the label. If I change that element line to
justify-start
justify-start
, it has the desired result.

But I cannot get a custom theme to perform that. Some failed attempts look like this:

.fi-in-entry-wrp-hint {

    @apply !flex inline-flex !items-start gap-x-3 !justify-start;

}

.fi-in-entry-wrp-label {

    @apply !flex inline-flex !items-start gap-x-3 !justify-start;

}

fi-in-entry-wrp {

    @apply !flex inline-flex !items-start gap-x-3 !justify-start;

}

fi-in-entry-wrp-hint-action {

@apply !flex inline-flex !items-start gap-x-3 !justify-start;

}
.fi-in-entry-wrp-hint {

    @apply !flex inline-flex !items-start gap-x-3 !justify-start;

}

.fi-in-entry-wrp-label {

    @apply !flex inline-flex !items-start gap-x-3 !justify-start;

}

fi-in-entry-wrp {

    @apply !flex inline-flex !items-start gap-x-3 !justify-start;

}

fi-in-entry-wrp-hint-action {

@apply !flex inline-flex !items-start gap-x-3 !justify-start;

}


Is it possible ?
Solution
Does this
infolist-action?
infolist-action?
support
->extraAtrributes
->extraAtrributes
? if yes, you can override maybe. Or you can target nested css like
.fi-in-entry-wrp>div.grid>div { @apply !justify-start }
.fi-in-entry-wrp>div.grid>div { @apply !justify-start }
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Customization beyond themes and css
FilamentFFilament / ❓┊help
16mo ago
CSS Documentation for Filament themes
FilamentFFilament / ❓┊help
6mo ago
Compile CSS classes assets ?
FilamentFFilament / ❓┊help
3y ago
Applying Custom Stilization Via "Hook Classes"
FilamentFFilament / ❓┊help
2y ago