LPX55 commited on
Commit
788f5eb
·
verified ·
1 Parent(s): 269aaa5

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
+ --tg-theme-bg-color: #ffffff;
7
+ --tg-theme-text-color: #000000;
8
+ --tg-theme-hint-color: #707579;
9
+ --tg-theme-link-color: #2481cc;
10
+ --tg-theme-button-color: #2481cc;
11
+ --tg-theme-button-text-color: #ffffff;
12
+ --tg-theme-secondary-bg-color: #f0f2f5;
13
+ }
14
+
15
+ body {
16
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
17
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
18
+ sans-serif;
19
+ -webkit-font-smoothing: antialiased;
20
+ -moz-osx-font-smoothing: grayscale;
21
+ background-color: var(--tg-theme-bg-color);
22
+ color: var(--tg-theme-text-color);
23
+ overflow-x: hidden;
24
+ }
25
+
26
+ * {
27
+ box-sizing: border-box;
28
+ }