12345678910111213141516171819202122 |
- body {
- margin: 0;
- padding: 0;
- height: 100vh;
- width: 100vw;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- overflow: hidden;
- background-color: black;
- }
- #remoteCapture {
- max-width: 100vw;
- max-height: 100vh;
- width: auto;
- height: auto;
- display: block;
- margin: auto;
- object-fit: contain;
- }
|