shinya
shinya
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
import preset from '../../../../vendor/filament/filament/tailwind.config.preset'

export default {
presets: [preset],
content: [
'./app/Filament/**/*.php',
'./vendor/jaocero/activity-timeline/resources/views/**/*.blade.php', // activity logs
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
],
}
import preset from '../../../../vendor/filament/filament/tailwind.config.preset'

export default {
presets: [preset],
content: [
'./app/Filament/**/*.php',
'./vendor/jaocero/activity-timeline/resources/views/**/*.blade.php', // activity logs
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
],
}
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
yes my bad i pasted the wrong file here heres resources/css/filament/admin/tailwind.config.js
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
i just created it two days ago, tho due to NDA i cant share it in like github or sth
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
i did not change filament settings that much. just ran the make-theme command. removing the package completely/ rebuilding the assets did not change anything
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
No description
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
no no its fixed but what i said about the misalignment of the headers of filament, is still a problem
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
i kinda managed to get the plugin to work by adding the path to resources/css/filament/admin/tailwind.config.js but the header problem still presists
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
import defaultTheme from 'tailwindcss/defaultTheme';

/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/jaocero/activity-timeline/resources/views/**/*.blade.php', // activity logs
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};
import defaultTheme from 'tailwindcss/defaultTheme';

/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/jaocero/activity-timeline/resources/views/**/*.blade.php', // activity logs
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};
24 replies
FFilament
Created by shinya on 12/13/2024 in #❓┊help
styles not loading correctly
- i did clear my browsers cache - what seem to be happening with the plugin is that it's classes are not being compiled by tailwind (which they should, attaching my tailwind config next)
24 replies