Scaffold tactical RPG web prototype

This commit is contained in:
2026-06-21 22:20:31 +09:00
parent 2f0810dd2e
commit 764df7edce
17 changed files with 1364 additions and 0 deletions

29
src/styles/global.css Normal file
View File

@@ -0,0 +1,29 @@
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;
}