Why is my content so wide
I am confusion to why my login is full width. Here is my blade view

Solution:Jump to solution
So just had a brief, I just temp renamed the simple.blade.php from resources/views/vendor, it fixes the view. So not sure what the issue entirely was as the simple.blade.php wasn't edited by me (that I can remember)
```php
<x-filament-panels::layout.base :livewire="$livewire">
@props([...
12 Replies
And the form in the Login class
I cant see any full width section in my form, only place is for the actions, which is inside the form itself, (the boolean value in the class)
I've also removed any custom classes that were on the blade, that made no difference
If you inspect the login page does the classes exist?
fi-simple-main my-16 w-full bg-white px-6 py-12 shadow-sm ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10 sm:rounded-xl sm:px-12 max-w-lg
on the main tag?
If so, you need to run npm run build and ensure your tailwind is configured to check the vendor dir for filament too.
Yeah this is my main
I've ran npm run build, How am I checking if tailwind is configured properly?
can you check, do you have any views in:
resources/views/vendor?
Usually like:
https://filamentphp.com/docs/3.x/notifications/installation#installing-tailwind-css
Yeah I have the overridden login form in the vendor path, I've ran all those steps except the current creating a new app.blade.php layout - would this still be needed even though im just using the page.simple template?
No it should be fine, and you are on the latest filamentphp version?
Yeah
ran composer update this morning
Im guessing its the w-100 class in the
main
tag, but if thats there by default Im sure I've had it not go full width beforemain should have a max-w-lg. I am a little un sure why yours is different, I can only assume an overriden layout. IF you remove your custom class does the default class work as expected If so compare and adjust accordingly.
Apologies, got side tracked on another task yesterday, will give this a go later this afternoon and get back to you
Solution
So just had a brief, I just temp renamed the simple.blade.php from resources/views/vendor, it fixes the view. So not sure what the issue entirely was as the simple.blade.php wasn't edited by me (that I can remember)
No but it might have been changed, it's why we don't tend to advise overriding views, diff compare the two views
Only one I intentionally overridden was the login.blade.php as it was bveing a pain to pass the js functionality into the action for security keys