File size: 374 Bytes
6c9e4ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 {
  html {
    font-family: 'Inter', sans-serif;
  }
}

@layer components {
  .btn {
    @apply px-4 py-2 rounded-md font-medium transition;
  }

  .btn-primary {
    @apply bg-primary text-white hover:bg-opacity-90;
  }

  .btn-secondary {
    @apply bg-secondary text-primary hover:bg-gray-200;
  }
}