first commit

This commit is contained in:
2026-01-13 22:55:46 +01:00
parent 3a3b0b046d
commit 2faf2dd8dc
31 changed files with 8490 additions and 0 deletions

32
client/src/style.css Normal file
View File

@@ -0,0 +1,32 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply bg-crypto-dark text-crypto-text overflow-hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
@apply bg-crypto-dark;
}
::-webkit-scrollbar-thumb {
@apply bg-crypto-panel rounded;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-crypto-muted;
}
.glass {
@apply backdrop-blur-md bg-white/5 border border-white/10;
}
.glass-panel {
@apply backdrop-blur-xl bg-black/40 border-r border-white/5;
}