13 lines
181 B
CSS
13 lines
181 B
CSS
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
main canvas {
|
|
aspect-ratio: 16 / 9;
|
|
width: min(100%, 100vh * 16 / 9);
|
|
height: 100%;
|
|
}
|
|
|