Show maps for each playlist, basic functionality

This commit is contained in:
2025-11-02 15:09:30 -08:00
parent 0b1146de71
commit fd02e4cf00
3 changed files with 350 additions and 49 deletions
+12
View File
@@ -29,6 +29,18 @@ body {
@apply bg-bg text-white/90 antialiased;
}
p a {
color: var(--color-neon);
text-decoration: underline;
text-decoration-color: rgba(34, 211, 238, 0.4);
transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
p a:hover {
color: color-mix(in srgb, var(--color-neon) 80%, white 20%);
text-decoration-color: rgba(34, 211, 238, 0.85);
}
/* Utilities */
@utility btn-neon {
@apply inline-flex items-center gap-2 rounded-md border border-neon/60 px-4 py-2 text-neon transition hover:border-neon hover:text-white focus:outline-none focus:ring-2 focus:ring-neon/50;