Basic react page in place

This commit is contained in:
2019-05-07 19:42:39 +10:00
commit 1628b63eb2
11 changed files with 5407 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/* global defaults */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 13pt Helvetica, Arial;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
overflow-x: hidden;
overflow-y: auto;
}