17 lines
177 B
CSS
17 lines
177 B
CSS
|
html, body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: #2c2c54;
|
||
|
display: grid;
|
||
|
place-items: center;
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|