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,13 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" />
<title>All my friends are made of square shaped blocks</title>
</head>
<body>
<div id="app"></div>
</body>
<script src="js/main.js"></script>
</html>

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;
}