24 lines
351 B
Plaintext
24 lines
351 B
Plaintext
.editor-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.tools {
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
.editor-content {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.overlay-canvas:hover {
|
|
cursor: 'none !important';
|
|
}
|
|
}
|