18 lines
257 B
CSS
18 lines
257 B
CSS
html, body {
|
|
margin: 0px;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
canvas {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
body:not(.editor-enabled) .is-visible-editor {
|
|
display: none !important;
|
|
}
|
|
|
|
body.editor-enabled .is-hidden-editor {
|
|
display: none !important;
|
|
}
|