FilamentF
Filament15mo ago
skyrowl

Filepond overflow

Hey, filepond is overflowing and hiding what's beneath
Here's the code of the component:
SpatieMediaLibraryFileUpload::make('examples')
            ->label('Exemples')
            ->multiple()
            ->image()
            ->imageEditor()
            ->imageEditorAspectRatios([
                '16:9',
            ])
            ->panelLayout('grid')
            ->itemPanelAspectRatio(9 / 16)
            ->imageCropAspectRatio('16:9')
            ->panelAspectRatio('16:1')
            ->rules([
                Rule::dimensions()
                    ->maxWidth(1024)
                    ->maxHeight(1024)
                    ->ratio(16 / 9),
            ])
            ->maxSize(1024)
            ->maxFiles(6)
            ->collection('examples')
            ->reorderable()
            ->responsiveImages()
            ->columnSpanFull()
            ->required(),

Tailwind configuration is the one from the docs and the item containing the overflow is filepond--list-scroller

Thx for any help!
image.png
Was this page helpful?