Fix video having black border on top due to regression from #2608 (#3392)

The combination of object-fit, relative position 50% from top and translating it
back upwards 50% is what allows us to crop the video properly, so it needs to
be +50%-50%
This commit is contained in:
Eugen Rochko 2017-05-28 19:11:47 +02:00 committed by GitHub
parent 0e20de9f89
commit 3fa8512474

View file

@ -3395,7 +3395,7 @@ button.icon-button.active i.fa-retweet {
object-fit: cover;
position: relative;
top: 50%;
transform: translateY(-35%);
transform: translateY(-50%);
width: 100%;
z-index: 1;
}