Compare commits
4 Commits
0cabcf7438
...
2b22f504cf
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b22f504cf | |||
| 9a87e9dde3 | |||
| ea7f0551f0 | |||
| 30d30f68fb |
+38
-36
@@ -1,7 +1,7 @@
|
||||
@import "tailwindcss";
|
||||
@import "flag-icons/css/flag-icons.min.css";
|
||||
|
||||
@theme inline {
|
||||
@theme {
|
||||
--color-bg: #040d08;
|
||||
--color-card: #0a1810;
|
||||
--color-hero: #0d2416;
|
||||
@@ -17,41 +17,43 @@
|
||||
--font-body: "Space Grotesk", system-ui, sans-serif;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
@layer base {
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
html { scroll-behavior: smooth; }
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
background: #040d08;
|
||||
color: #dff5e8;
|
||||
font-family: "Space Grotesk", system-ui, sans-serif;
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar { width: 5px; }
|
||||
::-webkit-scrollbar-track { background: #020a04; }
|
||||
::-webkit-scrollbar-thumb { background: rgba(34,197,94,0.25); border-radius: 4px; }
|
||||
|
||||
@keyframes livePulse {
|
||||
0%, 100% { opacity: 1; transform: scale(1); }
|
||||
50% { opacity: 0.2; transform: scale(0.6); }
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(8px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.animate-live { animation: livePulse 2s ease-in-out infinite; }
|
||||
.animate-fade-in { animation: fadeIn 0.3s ease-out; }
|
||||
|
||||
.pitch-grid {
|
||||
background-image: repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent,
|
||||
transparent 44px,
|
||||
rgba(34,197,94,0.018) 44px,
|
||||
rgba(34,197,94,0.018) 88px
|
||||
);
|
||||
body {
|
||||
background: #040d08;
|
||||
color: #dff5e8;
|
||||
font-family: "Space Grotesk", system-ui, sans-serif;
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar { width: 5px; }
|
||||
::-webkit-scrollbar-track { background: #020a04; }
|
||||
::-webkit-scrollbar-thumb { background: rgba(34,197,94,0.25); border-radius: 4px; }
|
||||
|
||||
@keyframes livePulse {
|
||||
0%, 100% { opacity: 1; transform: scale(1); }
|
||||
50% { opacity: 0.2; transform: scale(0.6); }
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(8px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.animate-live { animation: livePulse 2s ease-in-out infinite; }
|
||||
.animate-fade-in { animation: fadeIn 0.3s ease-out; }
|
||||
|
||||
.pitch-grid {
|
||||
background-image: repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent,
|
||||
transparent 44px,
|
||||
rgba(34,197,94,0.018) 44px,
|
||||
rgba(34,197,94,0.018) 88px
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
+4
-1
@@ -73,7 +73,10 @@ function parseScore(score: RawScore | undefined) {
|
||||
}
|
||||
|
||||
async function run() {
|
||||
const client = postgres(DATABASE_URL, { max: 5 })
|
||||
const client = postgres(DATABASE_URL, {
|
||||
max: 5,
|
||||
...(process.env.DB_PASSWORD ? { password: process.env.DB_PASSWORD } : {}),
|
||||
})
|
||||
const db = drizzle(client)
|
||||
|
||||
console.log('Creating tables...')
|
||||
|
||||
Reference in New Issue
Block a user