boardgame-phaser/packages/sample-game/src/style.css

34 lines
377 B
CSS

@import "tailwindcss";
html, body {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
}
#app {
height: 100%;
}
#ui-root {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
#ui-root > * {
pointer-events: auto;
}
#phaser-container {
pointer-events: auto;
}
#phaser-container canvas {
display: block;
}