selfhostable, read-only reddit client

Merge pull request #37 from KamalF/claude/fix-video-aspect-ratio-DMbYF

Fix video aspect ratio distortion in fullscreen mode

authored by oppi.li and committed by

GitHub d5dd0e5e 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;