F
Filament2mo ago
Medo

Empty Space in footer

Hello am facing this problem in some create / edit pages Any one fixed this problem ?
No description
12 Replies
toeknee
toeknee2mo ago
I haven't fixed it, but also have the same it's down to certain field types within the form....
ericmp
ericmp2mo ago
yeah i also have like this darker rectangle in a lot of modals when using dark mode, idk why. neither if it's actually expected or not. using light mode, that rectangle disappears
No description
No description
toeknee
toeknee2mo ago
I believe that's header/footer differences. Try runing php artisan filament:upgrade But also, looks like you have a custom colorway going on
ericmp
ericmp2mo ago
in my case i havent modified the colors, just added a custom color in the admin panel provider
->colors([
'primary' => [
...
->colors([
'primary' => [
...
ill try filament:upgrade edit: i did filament:upgrade, nothing changed
toeknee
toeknee2mo ago
For the whitespace I'm going to review it more It does resolve after clicking around
ericmp
ericmp2mo ago
if i click around it stays the same
toeknee
toeknee2mo ago
I'm using tabs i think it's down to a field type Yep the select field is causing it, likely how the select options are done
ericmp
ericmp2mo ago
r u sure? in my case im using a TextInput + a DateTimePicker anything else
toeknee
toeknee2mo ago
Not sure but my diagnosis for my issue, yours will likely be the datetimepicker as it has popup data In a custom theme try and add:
.fi-main {position: relative;overflow:hidden;}
.fi-main {position: relative;overflow:hidden;}
ericmp
ericmp2mo ago
in my case is this. so yeah in the case of the modals seems intended
No description
ericmp
ericmp2mo ago
if i comment it, the modal is shown like this
No description
Medo
Medo5w ago
I fix it by comment
require("daisyui")
require("daisyui")
from plugins custom theme
No description