Create style.css
Browse files- src/style.css +8 -0
src/style.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
html, body, #root {
|
| 2 |
+
width: 100%;
|
| 3 |
+
height: 100%;
|
| 4 |
+
margin: 0;
|
| 5 |
+
padding: 0;
|
| 6 |
+
box-sizing: border-box;
|
| 7 |
+
font-family: sans-serif;
|
| 8 |
+
}
|