Reduce overall font size
How do I reduce the overall font size with Filament? It seems overly big, especially in form fields etc.
I have this in my Tailwind config:
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/.blade.php',
'./vendor/laravel/jetstream/**/.blade.php',
'./storage/framework/views/.php',
'./resources/views/**/.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
And this in the config:
'google_fonts' => 'https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap',
I also have Jetstream installed. Could the Jetstream styles be overriding the Filament ones?
I have this in my Tailwind config:
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/.blade.php',
'./vendor/laravel/jetstream/**/.blade.php',
'./storage/framework/views/.php',
'./resources/views/**/.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
And this in the config:
'google_fonts' => 'https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap',
I also have Jetstream installed. Could the Jetstream styles be overriding the Filament ones?
