Files
rogue/src/style.css
Peter Stockings ad487e766c Use full screen
2026-01-04 09:44:05 +11:00

25 lines
308 B
CSS

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