Improve the solution

solution
Ryan Sobol 8 years ago committed by Brent Gardner
parent bd71278bba
commit b0da25cd29
  1. 2
      index.css
  2. 5
      index.html
  3. 0
      index.js

@ -2,7 +2,7 @@ html {
box-sizing: border-box;
}
*, *:before, *:after {
* {
box-sizing: inherit;
}

@ -3,14 +3,13 @@
<head>
<meta charset="utf-8">
<title>Pixel Art Maker</title>
<link rel="stylesheet" type="text/css" href="app.css" />
<script defer src="index.js"></script>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<main>
<div id="canvas"></div>
<div id="palette"></div>
</main>
<script src="app.js"></script>
</body>
</html>

Loading…
Cancel
Save