22 lines
268 B
CSS
22 lines
268 B
CSS
|
html, body {
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
background: #F2F9FE;
|
||
|
}
|
||
|
|
||
|
.scene {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
svg * {
|
||
|
transform: translate3d(0, 0, 0);
|
||
|
}
|