26 lines
383 B
SCSS
26 lines
383 B
SCSS
|
.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;
|
||
|
}
|