anycoder-e3d83b2d / styles /globals.css
mvbhr's picture
Upload styles/globals.css with huggingface_hub
da06f12 verified
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-50 text-gray-900;
}
}
@layer components {
.stock-card {
@apply bg-white rounded-xl shadow-sm hover:shadow-md transition-shadow duration-200 p-6;
}
.stock-positive {
@apply text-green-600;
}
.stock-negative {
@apply text-red-600;
}
}