diff --git a/src/app/globals.css b/src/app/globals.css index cd1910b..b9e72b9 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -12,7 +12,7 @@ --color-bg: #f8fafc; --color-bg-card: #ffffff; --color-text: #1e293b; - --color-text-muted: #64748b; + --color-text-muted: #475569; --color-border: #e2e8f0; } @@ -75,9 +75,9 @@ body { /* ── Calendar day styles ── */ .cal-day { - @apply w-11 h-11 rounded-xl flex items-center justify-center text-sm cursor-pointer transition-all; - min-width: 44px; - min-height: 44px; + @apply w-12 h-12 rounded-xl flex items-center justify-center text-sm cursor-pointer transition-all; + min-width: 48px; + min-height: 48px; } .cal-day:hover:not(.cal-disabled):not(.cal-full) { @apply bg-accent/15 text-accent; @@ -115,3 +115,27 @@ input:focus, select:focus, textarea:focus { z-index: 10; padding-bottom: env(safe-area-inset-bottom, 0px); } + +/* ── Placeholder contrast ── */ +input::placeholder, +textarea::placeholder { + color: var(--color-text-muted); + opacity: 0.7; +} + +/* ── Reduced motion ── */ +@media (prefers-reduced-motion: reduce) { + .animate-checkmark-circle, + .animate-checkmark-draw, + .animate-slide-up, + .animate-fade-in { + animation: none !important; + opacity: 1; + } + .skeleton { + animation: none !important; + } + .cal-day:active:not(.cal-disabled):not(.cal-full) { + transform: none !important; + } +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 12f2fe1..a7822c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -14,6 +14,12 @@ export default function RootLayout({ return (
+ + Zum Hauptinhalt springen + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 65df66f..2712b92 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -24,7 +24,7 @@ export default function Home() { -