anycoder-728b0a8c / styles /globals.css
akhaliq's picture
akhaliq HF Staff
Upload styles/globals.css with huggingface_hub
5bd0720 verified
raw
history blame contribute delete
492 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-50 text-gray-900 antialiased;
}
}
@layer components {
.chat-container {
@apply flex flex-col h-screen max-w-4xl mx-auto bg-white shadow-lg;
}
.message-bubble {
@apply rounded-2xl px-4 py-3 max-w-xs md:max-w-md break-words;
}
.user-bubble {
@apply bg-blue-600 text-white ml-auto;
}
.assistant-bubble {
@apply bg-gray-200 text-gray-800 mr-auto;
}
}