diff options
Diffstat (limited to 'src/index.css')
-rw-r--r-- | src/index.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..1b274d3 --- /dev/null +++ b/src/index.css @@ -0,0 +1,19 @@ +html,
+body,
+#root {
+ width: 100%;
+ height: 100%;
+ padding: 0;
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell,
+ Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
+}
+
+a {
+ color: inherit;
+ text-decoration: none;
+}
+
+* {
+ box-sizing: border-box;
+}
|