selfhostable, read-only reddit client
16
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix video aspect ratio distortion in fullscreen mode

Use CSS fullscreen selectors to ensure videos maintain correct aspect
ratio when played fullscreen in the browser.

https://claude.ai/code/session_01D8cqg6EMZ1qSausfkzYnF3

Claude 1bbeb639 47371b30

+12
+12
src/public/styles.css
··· 300 300 object-fit: fill; 301 301 } 302 302 303 + video:-webkit-full-screen { 304 + width: 100%; 305 + height: 100%; 306 + object-fit: contain; 307 + } 308 + 309 + video:fullscreen { 310 + width: 100%; 311 + height: 100%; 312 + object-fit: contain; 313 + } 314 + 303 315 .image-viewer.main-content img, 304 316 .image-viewer.main-content video { 305 317 max-height: 70vh;