Full screen takeover not working properly
The container for all of the tutorial panels is randomly sizing and is just a bunch of black boxes 660px wide or smaller. Formatting looks bad as well. I presume this is related to the tailwind config, which matches the instructions in the readme.
Hi, make sure you run php artisan filament:assets and have a custom filament theme and have added the plugin's vendor paths to your tailwind config (as described here https://github.com/GuavaCZ/tutorials?tab=readme-ov-file#add-assets-to-your-theme)
Same result when following the instructions.
I have same issue !
Add the plugins resources files to your tailwind config vendor
Already there.
import plugin from '@tailwindcss/forms';
import preset from './vendor/filament/support/tailwind.config.preset'
const colors = require('tailwindcss/colors');
export default {
presets: [preset],
content: [
'./app/Filament/**/*.php',
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
'./vendor/archilex/filament-filter-sets/**/*.php',
'./vendor/guava/calendar/resources/**/*.blade.php',
'./vendor/guava/tutorials/resources/**/*.php',
],
theme: {
extend: {
colors: {
...colors,
},
},
}
}