SFM2001/spititout
0
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');2@import "tailwindcss";3 4@theme {5 --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;6}7 8@layer base {9 body {10 @apply bg-black text-white antialiased overflow-hidden;11 font-family: var(--font-sans);12 }13}14 15/* Custom Scrollbar for Chat Area */16::-webkit-scrollbar {17 width: 4px;18}19 20::-webkit-scrollbar-track {21 background: transparent;22}23 24::-webkit-scrollbar-thumb {25 background: rgba(255, 255, 255, 0.1);26 border-radius: 10px;27}28 29::-webkit-scrollbar-thumb:hover {30 background: rgba(255, 255, 255, 0.2);31}32 