eubottura commited on
Commit
f969af4
·
verified ·
1 Parent(s): 93bd458

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +27 -0
styles/globals.css ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @layer base {
6
+ body {
7
+ @apply bg-slate-950 text-slate-200 antialiased transition-colors duration-200;
8
+ }
9
+
10
+ html.dark body {
11
+ @apply bg-slate-950 text-slate-200;
12
+ }
13
+
14
+ html:not(.dark) body {
15
+ @apply bg-gray-50 text-slate-900;
16
+ }
17
+ }
18
+
19
+ @layer utilities {
20
+ .scrollbar-hide::-webkit-scrollbar {
21
+ display: none;
22
+ }
23
+ .scrollbar-hide {
24
+ -ms-overflow-style: none;
25
+ scrollbar-width: none;
26
+ }
27
+ }