From 698f118b253c8894b0d040ba5f0606f2d9fab043 Mon Sep 17 00:00:00 2001 From: imohkay Date: Fri, 22 Oct 2021 15:57:30 +0530 Subject: [PATCH] add object-fit to make video full bleed --- app/static/css/partials/_film.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/static/css/partials/_film.scss b/app/static/css/partials/_film.scss index f5da2f0..128abb9 100755 --- a/app/static/css/partials/_film.scss +++ b/app/static/css/partials/_film.scss @@ -128,7 +128,10 @@ body { right: 0; z-index: -9999; height: 100vh; - width: auto; + width: 100vw; // just added + object-fit: fill; // just added + //height: 100vh; + //width: auto; margin: 0 auto; } }