From 387a9e7b8188e3ae23650bfda388671a6d7483ba Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 4 Nov 2020 17:21:19 -0800 Subject: [PATCH] Fix vertical centering of wide videos on narrowish viewport. --- frontends/etiquette_flask/templates/photo.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontends/etiquette_flask/templates/photo.html b/frontends/etiquette_flask/templates/photo.html index 10c5422..8a4bc1c 100644 --- a/frontends/etiquette_flask/templates/photo.html +++ b/frontends/etiquette_flask/templates/photo.html @@ -66,6 +66,11 @@ width: 100%; max-width: 100%; max-height: 100%; + + position: absolute; + top: 0; + bottom: 0; + margin: auto auto; } .photo_viewer_image {