- 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).
44 lines
725 B
CSS
44 lines
725 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: #0F1014;
|
|
--surface: #1A1B20;
|
|
--primary: #C89D46;
|
|
--border: rgba(255, 255, 255, 0.1);
|
|
}
|
|
}
|
|
|
|
body {
|
|
@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;
|
|
}
|
|
|
|
.scrollbar-hide {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
} |