14 lines
197 B
CSS
14 lines
197 B
CSS
![]() |
body {
|
||
|
margin: 0;
|
||
|
width: 100svw;
|
||
|
height: 100svh;
|
||
|
display: grid;
|
||
|
justify-content: center;
|
||
|
align-content: center;
|
||
|
grid-template: 1fr / 1fr;
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
width: 100%;
|
||
|
max-height: 100%;
|
||
|
}
|