Spaces:
Build error
Build error
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +36 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
@layer base {
|
| 6 |
+
html {
|
| 7 |
+
scroll-behavior: smooth;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
body {
|
| 11 |
+
@apply bg-gray-50 text-gray-900;
|
| 12 |
+
}
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
@layer components {
|
| 16 |
+
.message-bubble {
|
| 17 |
+
@apply rounded-2xl px-4 py-3 max-w-xs sm:max-w-md lg:max-w-lg xl:max-w-xl;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.message-user {
|
| 21 |
+
@apply bg-primary-500 text-white ml-auto;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
.message-assistant {
|
| 25 |
+
@apply bg-white border border-gray-200 text-gray-800;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
.scrollbar-hide {
|
| 29 |
+
-ms-overflow-style: none;
|
| 30 |
+
scrollbar-width: none;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.scrollbar-hide::-webkit-scrollbar {
|
| 34 |
+
display: none;
|
| 35 |
+
}
|
| 36 |
+
}
|