school-timetracker/frontend/tailwind.config.js
Patryk Hegenberg e719f4565f feat: add completed Web-Frontend in Svelte with some new Features
- Added import of Schedules
- Added export for schedule table
- Added import of logo
- Added password change to users
- improved ui/ux
2026-01-15 15:19:53 +01:00

15 lines
243 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{html,js,svelte,ts}",
],
theme: {
extend: {},
},
plugins: [
require('daisyui'),
],
daisyui: {
themes: ["light", "dark"],
},
}