app.css 562 B

1234567891011121314151617181920212223
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer base {
  5. :root {
  6. --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  7. }
  8. body {
  9. @apply bg-slate-50 text-slate-900;
  10. }
  11. }
  12. @layer components {
  13. .glass-panel {
  14. @apply rounded-3xl border border-white/20 bg-white/70 shadow-xl backdrop-blur-md dark:border-white/10 dark:bg-slate-900/60;
  15. }
  16. .metric-card {
  17. @apply rounded-2xl border border-slate-200/80 bg-white/80 px-5 py-4 shadow-sm dark:border-slate-700/80 dark:bg-slate-900/50;
  18. }
  19. }