salomonsky commited on
Commit
cb6da4d
·
verified ·
1 Parent(s): 2bcf027

Create index.css

Browse files
Files changed (1) hide show
  1. index.css +23 -0
index.css ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ body {
6
+ font-family: 'Inter', sans-serif;
7
+ -webkit-font-smoothing: antialiased;
8
+ -moz-osx-font-smoothing: grayscale;
9
+ }
10
+
11
+ .spinner {
12
+ border: 4px solid rgba(255, 255, 255, 0.3);
13
+ border-radius: 50%;
14
+ border-top: 4px solid #ffffff;
15
+ width: 24px;
16
+ height: 24px;
17
+ animation: spin 1s linear infinite;
18
+ }
19
+
20
+ @keyframes spin {
21
+ 0% { transform: rotate(0deg); }
22
+ 100% { transform: rotate(360deg); }
23
+ }