39 lines
728 B
HTML
39 lines
728 B
HTML
<template id="canvas-display-template">
|
|
<style></style>
|
|
:host {
|
|
display: block;
|
|
position: relative;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.canvas-wrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--bg-color, #ffffff);
|
|
}
|
|
|
|
/* grid overlay */
|
|
.grid-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
}
|
|
</style>
|
|
|
|
<div class="canvas-wrapper">
|
|
<canvas id="draw-canvas"></canvas>
|
|
<svg class="grid-overlay" id="grid-overlay"></svg>
|
|
</div>
|
|
</template>
|