Files
heros_web/src/styles/global.css

30 lines
342 B
CSS

html,
body {
width: 100%;
height: 100%;
margin: 0;
background: #0b0d12;
overflow: hidden;
}
body {
display: grid;
place-items: center;
font-family:
Inter,
'Segoe UI',
system-ui,
-apple-system,
BlinkMacSystemFont,
sans-serif;
}
#game {
width: 100vw;
height: 100vh;
}
canvas {
display: block;
}