Use full screen

This commit is contained in:
Peter Stockings
2026-01-04 09:44:05 +11:00
parent 64118090d6
commit ad487e766c
4 changed files with 51 additions and 14 deletions

24
src/style.css Normal file
View File

@@ -0,0 +1,24 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
#app {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #111;
}
canvas {
display: block;
}