Cambera commited on
Commit
6c9e4ef
·
verified ·
1 Parent(s): ffac6b9

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
+ html {
7
+ font-family: 'Inter', sans-serif;
8
+ }
9
+ }
10
+
11
+ @layer components {
12
+ .btn {
13
+ @apply px-4 py-2 rounded-md font-medium transition;
14
+ }
15
+
16
+ .btn-primary {
17
+ @apply bg-primary text-white hover:bg-opacity-90;
18
+ }
19
+
20
+ .btn-secondary {
21
+ @apply bg-secondary text-primary hover:bg-gray-200;
22
+ }
23
+ }