30 lines
422 B
CSS
30 lines
422 B
CSS
html, body{
|
|
margin: 0;
|
|
padding: 0;
|
|
inset: 0;
|
|
position: absolute;
|
|
z-index: 0;
|
|
background-color: #FFFFFF;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
display: block;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
/* margin-top: 0vh; */
|
|
text-align: center;
|
|
/* height: 100vh; */
|
|
}
|
|
|
|
|
|
.dg{
|
|
display: none !important;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|