File size: 367 Bytes
da06f12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@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;
  }
}