canvas/packages/client/src/board.scss

26 lines
383 B
SCSS
Raw Normal View History

2024-02-13 11:44:13 -08:00
.board-wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.debug-point {
position: fixed;
z-index: 9999;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: #ff0000;
opacity: 0.5;
pointer-events: none;
touch-action: none;
}