Css & Theme
Publish the theme files
php artisan vendor:publish --tag=tall-form-theme-cssphp artisan vendor:publish --tag=tall-form-theme-css-tw-2Add to layout
<header>
...
@livewireStyles
@stack("styles")
...
</header>Optional custom.css
custom.cssinput:invalid, textarea:invalid, select:invalid {
box-shadow: none;
}
input, select, textarea, button, div, a {
&:focus, &:active, &:hover {
outline: none;
}
}
[x-cloak] {
display: none;
}Add to app.css
app.cssWarning!
Potential css class naming conflicts
Last updated
Was this helpful?