From ce1815038ba4d747f11d2ebf6979ef58e5bad369 Mon Sep 17 00:00:00 2001 From: Felix Date: Sat, 30 May 2020 17:42:33 -0500 Subject: [PATCH] Fix max-width of video element (closes #179) --- src/parts/_misc.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/parts/_misc.css b/src/parts/_misc.css index 0ebec9c..c72f2fc 100644 --- a/src/parts/_misc.css +++ b/src/parts/_misc.css @@ -1,4 +1,5 @@ -img { +img, +video { max-width: 100%; height: auto; }