feat: refine Scan & Taste UI, fix desktop scrolling, and resolve production login fetch error

- Reverted theme from gold to amber and restored legacy typography.
- Refactored ScanAndTasteFlow and TastingEditor for robust desktop scrolling.
- Hotfixed sw.js to completely bypass Supabase Auth/API requests to fix 'Failed to fetch' in production.
- Integrated full tasting note persistence (tags, buddies, sessions).
This commit is contained in:
2025-12-21 22:29:16 +01:00
parent 4e8af60488
commit b57f5dc2ad
12 changed files with 1482 additions and 120 deletions

View File

@@ -2,28 +2,37 @@
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}
@media (prefers-color-scheme: dark) {
@layer base {
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
--background: #0F1014;
--surface: #1A1B20;
--primary: #C89D46;
--border: rgba(255, 255, 255, 0.1);
}
}
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(to bottom,
transparent,
rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
@apply bg-[#0F1014] text-white antialiased;
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
h1,
h2,
h3,
h4,
.font-display {
font-family: var(--font-playfair), serif;
}
@layer utilities {
.glass {
@apply backdrop-blur-md bg-white/5 border border-white/10;
}
.glass-dark {
@apply backdrop-blur-md bg-black/40 border border-white/5;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}