10 lines
156 B
CSS
10 lines
156 B
CSS
|
|
#screen {
|
|
aspect-ratio: calc(352 / 160);
|
|
flex-grow: 1;
|
|
object-fit: contain;
|
|
max-width: 100vw;
|
|
max-height: 100vh;
|
|
flex-shrink: 0;
|
|
}
|