Spaces:
Build error
Build error
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +27 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
@layer base {
|
| 6 |
+
body {
|
| 7 |
+
@apply bg-gray-50 text-gray-900 antialiased;
|
| 8 |
+
}
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
@layer components {
|
| 12 |
+
.chat-container {
|
| 13 |
+
@apply flex flex-col h-screen max-w-4xl mx-auto bg-white shadow-lg;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.message-bubble {
|
| 17 |
+
@apply rounded-2xl px-4 py-3 max-w-xs md:max-w-md break-words;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.user-bubble {
|
| 21 |
+
@apply bg-blue-600 text-white ml-auto;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
.assistant-bubble {
|
| 25 |
+
@apply bg-gray-200 text-gray-800 mr-auto;
|
| 26 |
+
}
|
| 27 |
+
}
|