Initial commit
This commit is contained in:
commit
43a4c7dd29
71 changed files with 14226 additions and 0 deletions
20
tailwind.config.ts
Normal file
20
tailwind.config.ts
Normal file
|
@ -0,0 +1,20 @@
|
|||
import defaultTheme from 'tailwindcss/defaultTheme';
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
||||
'./storage/framework/views/*.php',
|
||||
'./resources/**/*.blade.php',
|
||||
'./resources/**/*.ts',
|
||||
'./resources/**/*.svelte'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Figtree', ...defaultTheme.fontFamily.sans]
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue