mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 22:36:42 +02:00
PWA: @vite-pwa/sveltekit with shared-pwa config, offline fallback page, service worker with standard caching preset. i18n: svelte-i18n with DE/EN locale files, all UI strings translated, language switcher in PillNav, auth pages use shared-i18n translations. Landing: Migrated from scoped CSS to Tailwind CSS with @astrojs/tailwind. Hero section, card grid, category filter buttons, detail page with timeline. Removed unused components (Welcome, ThemeToggle, update-locations.js). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#2563eb',
|
|
'primary-dark': '#1d4ed8',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|