15 lines
363 B
CSS
15 lines
363 B
CSS
.canvas-node-container {
|
|
background-color: var(--background-primary);
|
|
border-radius: 0;
|
|
border: 1px solid rgb(var(--canvas-color));
|
|
contain: strict;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-shadow: var(--shadow-stationary);
|
|
} |