Archived
1
0

FuseBox didn't work out

This commit is contained in:
Asher
2019-01-11 18:11:34 -06:00
committed by Kyle Carberry
parent 0c3ffb301a
commit d44a0a3e59
15 changed files with 3257 additions and 1337 deletions

View File

@ -43,7 +43,6 @@
<div class="message">
</div>
</div>
$bundles
</body>
</html>

View File

@ -1,5 +1,8 @@
import { logger } from "@coder/logger";
import "./index.scss";
logger.info("Starting app");
const overlay = document.getElementById("overlay");
const logo = document.getElementById("logo");
if (overlay && logo) {
@ -10,3 +13,5 @@ if (overlay && logo) {
logo.style.transform = `perspective(200px) rotateX(${yPos}deg) rotateY(${xPos}deg)`;
});
}
import "@coder/vscode";