tia/src/app/globals.css
Mannu 9e258d74b4 Add activity scroller to home page
- Add time-based activity scroller showing lastFeed, lastSleep, lastDiaper times
- Scrolling marquee animation below vaccine reminders
- Fix diaper icon to 🧷
- Link baby profile card to growth page
- Add loading state for recent logs

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-17 16:15:20 +05:30

35 lines
652 B
CSS

@import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));
:root {
--background: #fdf2f2;
--foreground: #171717;
}
.dark {
--background: #111827;
--foreground: #f9fafb;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.animate-marquee {
animation: marquee 20s linear infinite;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}