From 088c6d606b46f994ace5d1969fdf7c0832d855b7 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 16 Dec 2018 23:00:59 +0100 Subject: [PATCH] Fix container width --- script/public/index.html | 8 ++++++-- script/public/styles.css | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 script/public/styles.css diff --git a/script/public/index.html b/script/public/index.html index 7a4b49fc..2437083c 100644 --- a/script/public/index.html +++ b/script/public/index.html @@ -9,6 +9,7 @@ + @@ -73,7 +74,7 @@

Información de la reproducción

Formatos soportados
- aac, mp3, nsvaudio/mpeg + aac, mp3, nsv, audio/mpeg @@ -123,7 +124,7 @@ player = new Clappr.Player({ source: channelToReproduce, parentId: '#video-player', - height: '400px', + height: '500px', width: '100%', autoPlay: true, }); @@ -175,6 +176,9 @@ document.getElementById("video-resolution").innerHTML = ""; } + + + \ No newline at end of file diff --git a/script/public/styles.css b/script/public/styles.css new file mode 100644 index 00000000..61cb86e4 --- /dev/null +++ b/script/public/styles.css @@ -0,0 +1,3 @@ +.container[data-container] { + max-width: 100% !important; +} \ No newline at end of file