managarten/manacore/apps/web/src/app.css
Till-JS 926ca231b5 feat: add i18n localization with language switcher to all web apps
- Add svelte-i18n configuration with SSR support to all web apps
- Create LanguageSelector component for each app with brand colors
- Add German and English locale files
- Integrate language switcher into login pages via headerControls snippet
- Fix Tailwind v4 @source directives for shared package scanning
- Update AppSlider styling to match login container design

Apps updated:
- Memoro (gold #f8d62b)
- Märchenzauber (pink #FF6B9D)
- ManaDeck (purple #8b5cf6)
- ManaCore (indigo #6366f1)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-25 01:41:25 +01:00

51 lines
886 B
CSS

@import "tailwindcss";
@import "@manacore/shared-tailwind/themes.css";
/* Scan shared packages for Tailwind classes */
@source "../../../../packages/shared-ui/src";
@source "../../../../packages/shared-auth-ui/src";
@source "../../../../packages/shared-branding/src";
@source "../../../../packages/shared-theme-ui/src";
@source "../../../../packages/shared-subscription-ui/src";
@layer base {
:root {
color-scheme: light dark;
}
h1 {
font-size: 2.25rem;
line-height: 2.5rem;
font-weight: 700;
}
h2 {
font-size: 1.875rem;
line-height: 2.25rem;
font-weight: 700;
}
h3 {
font-size: 1.5rem;
line-height: 2rem;
font-weight: 600;
}
h4 {
font-size: 1.25rem;
line-height: 1.75rem;
font-weight: 600;
}
h5 {
font-size: 1.125rem;
line-height: 1.75rem;
font-weight: 500;
}
h6 {
font-size: 1rem;
line-height: 1.5rem;
font-weight: 500;
}
}