optimized content loading with smaller css

This commit is contained in:
2026-02-18 21:47:14 +01:00
parent eab650b610
commit d8d054c9a8
23 changed files with 1107 additions and 239 deletions

View File

@@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/web/templates/user/employee_base.html", "./src/web/templates/user/employee_*.html"],
theme: {
extend: {
colors: {
'brand-bg': '#1a1a2e',
'brand-bg-dark': '#0f0f1a',
'brand-bg-light': '#252540',
'brand-highlight': '#e94560',
'brand-accent': '#0f3460',
}
},
},
plugins: [],
}