Dev branch

This commit is contained in:
Simon Pocrnjič
2025-11-02 12:31:01 +01:00
parent 5f879c9436
commit 63e0958b66
241 changed files with 17686 additions and 7327 deletions
+6 -21
View File
@@ -1,33 +1,18 @@
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx,vue}',
'node_modules/flowbite/**/*.{js,jsx,ts,tsx}',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
// Disable dark mode - we don't use it
darkMode: 'class', // Set to 'class' but don't add 'dark' class anywhere, or remove all dark: classes
// Note: Theme configuration has moved to CSS using @theme directive in app.css
// Plugins may need updates for Tailwind CSS 4 compatibility
plugins: [
forms,
typography,
require('flowbite/plugin')({
charts: true
}),
require('tailwindcss-inner-border')
// @tailwindcss/forms and @tailwindcss/typography are now imported via CSS
// Plugins are now imported via CSS or handled differently in Tailwind 4
],
};