40 lines
No EOL
660 B
CSS
40 lines
No EOL
660 B
CSS
.grid-widget .grid-wrap {
|
|
width: 100%;
|
|
height: 80vh;
|
|
position: relative;
|
|
}
|
|
|
|
.grid-widget [data-grid] {
|
|
position: relative;
|
|
cursor: crosshair;
|
|
width: 100%;
|
|
height: 100%;
|
|
touch-action: none;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.grid-widget [data-toolbar]::-webkit-scrollbar {
|
|
height: 8px;
|
|
}
|
|
|
|
.grid-widget [data-coords] {
|
|
bottom: 10px;
|
|
pointer-events: none;
|
|
left: 10px;
|
|
}
|
|
|
|
.grid-widget [data-canvas] {
|
|
z-index: 9999;
|
|
pointer-events: none;
|
|
inset: 0;
|
|
}
|
|
|
|
.grid-widget [data-toolbar] {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.grid-widget [data-dot] {
|
|
transform: translate(-50%, -50%);
|
|
z-index: 10000;
|
|
pointer-events: none;
|
|
} |