feat: v1 release - serving calculator, notes UI, tags, random recipe, confetti, favorites section, PWA icons, category icons, animations

This commit is contained in:
clawd
2026-02-18 10:23:22 +00:00
parent 60ca01fb94
commit de567f93db
17 changed files with 476 additions and 39 deletions

View File

@@ -12,6 +12,7 @@
--color-sage: #7BAE7F;
--color-berry: #C94C4C;
--color-sand: #E8E0D8;
--color-berry-red: #C94C4C;
--font-display: 'Playfair Display', serif;
--font-sans: 'Inter', system-ui, sans-serif;
}
@@ -30,3 +31,12 @@ body {
-ms-overflow-style: none;
scrollbar-width: none;
}
@keyframes confetti-fall {
0% { transform: translateY(0) rotate(0deg); opacity: 1; }
100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.animate-confetti-fall {
animation: confetti-fall 2s ease-in forwards;
}