Spaces:
Build error
Build error
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +23 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
@layer base {
|
| 6 |
+
body {
|
| 7 |
+
@apply bg-gray-50 text-gray-900;
|
| 8 |
+
}
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
@layer components {
|
| 12 |
+
.stock-card {
|
| 13 |
+
@apply bg-white rounded-xl shadow-sm hover:shadow-md transition-shadow duration-200 p-6;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.stock-positive {
|
| 17 |
+
@apply text-green-600;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.stock-negative {
|
| 21 |
+
@apply text-red-600;
|
| 22 |
+
}
|
| 23 |
+
}
|