BSJ2004 commited on
Commit
db00358
·
verified ·
1 Parent(s): a8cf6ba

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +28 -0
styles/globals.css ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ :root {
6
+ --background: #0f172a;
7
+ --foreground: #f8fafc;
8
+ }
9
+
10
+ body {
11
+ color: var(--foreground);
12
+ background: var(--background);
13
+ }
14
+
15
+ @layer utilities {
16
+ .text-balance {
17
+ text-wrap: balance;
18
+ }
19
+ }
20
+
21
+ @layer base {
22
+ * {
23
+ @apply border-border;
24
+ }
25
+ body {
26
+ @apply bg-background text-foreground;
27
+ }
28
+ }