Initial commit, basic web page with reagent component is working

This commit is contained in:
heyarne 2021-12-30 15:37:23 +01:00
commit 5aac0474c1
13 changed files with 2103 additions and 0 deletions

View file

@ -0,0 +1,20 @@
*,
*:before,
*:after {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
}
body {
background: #eee;
color: #222;
font-family: sans-serif;
font-size: 14px;
line-height: 1.2;
}