LemmyNet / lemmy-ui

The official web app for lemmy.
https://join-lemmy.org/
GNU Affero General Public License v3.0
892 stars 334 forks source link

Inline video previews are too big #1984

Open VulumeCode opened 1 year ago

VulumeCode commented 1 year ago

Requirements

Summary

The video preview in the front page and on the post itself is way too big to be useful. It's 2,5 screens tall.

For reference https://lemmy.world/post/2182350

image

image

Steps to Reproduce

  1. Go to a post or find one in your front page
  2. Open the preview

Technical Details

Firefox on Windows 11 desktop

Lemmy Instance Version

0.18.2-1-g68276b2f9

Lemmy Instance URL

https://lemmy.world

VulumeCode commented 1 year ago

Fixed by injecting the following with the Stylish FF add-on.

video {
    max-height: 80vh;
    max-width: 99vw;
}