Spaces:
Build error
Build error
Upload styles/globals.css with huggingface_hub
Browse files- styles/globals.css +15 -0
styles/globals.css
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
* {
|
| 6 |
+
box-sizing: border-box;
|
| 7 |
+
padding: 0;
|
| 8 |
+
margin: 0;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
html,
|
| 12 |
+
body {
|
| 13 |
+
max-width: 100vw;
|
| 14 |
+
overflow-x: hidden;
|
| 15 |
+
}
|