Improved UI/UX

This commit is contained in:
Devine Lu Linvega
2018-09-12 15:27:01 +12:00
parent a0ede91554
commit ce84b3115b
9 changed files with 98 additions and 91 deletions

View File

@@ -26,15 +26,12 @@
<link rel="stylesheet" type="text/css" href="desktop/sources/links/theme.css"/>
<title>Dotgrid(Icon)</title>
</head>
<body>
<div id="app">
<script>
let dialog = null;
dotgrid = new Dotgrid(300,300,20,20,4,4);
dotgrid.install();
dotgrid.start();
document.getElementById("app").className = "web";
</script>
</div>
<body class='web'>
<script>
let dialog = null;
dotgrid = new Dotgrid(300,300,20,20,4,4);
dotgrid.install(document.body);
dotgrid.start();
</script>
</body>
</html>