Files
Dramlog-Prod/src/app/globals.css
robin b57f5dc2ad 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).
2025-12-21 22:29:16 +01:00

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;
}
}