From a9e9e63b765d185e95484a2dc5cb6927a5f36004 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Thu, 10 Jun 2021 10:42:20 +0200 Subject: [PATCH] Its a miracle --- src/Main.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main.elm b/src/Main.elm index d7f8d70..94dd77d 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -138,7 +138,7 @@ update msg model = view : Model -> Browser.Document Msg view model = { title = "Hello" - , body = [ Element.layout [ Element.width Element.fill, Element.height Element.fill ] (video model) ] + , body = [ Element.layout [ Element.height Element.fill ] (video model) ] } @@ -255,7 +255,7 @@ video model = ) (Element.html (Html.video - videoEvents + (Html.Attributes.class "hf" :: videoEvents) [] ) )