29 lines
462 B
CSS
29 lines
462 B
CSS
.canvas-wrap {
|
|
margin-top: 0.5rem;
|
|
}
|
|
.canvas-wrap canvas {
|
|
width: 100%;
|
|
height: auto;
|
|
cursor: crosshair;
|
|
touch-action: none;
|
|
}
|
|
.tool-label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.85rem;
|
|
color: var(--muted);
|
|
}
|
|
.tool-label input[type="color"] {
|
|
width: 2.2rem;
|
|
height: 2rem;
|
|
padding: 0.15rem;
|
|
flex: none;
|
|
cursor: pointer;
|
|
}
|
|
.tool-label input[type="range"] {
|
|
width: 120px;
|
|
flex: none;
|
|
padding: 0;
|
|
}
|