[ts][player] Fixed canvas style to use display: block, because CSS was made by sadists.

This commit is contained in:
badlogic 2018-11-19 15:15:21 +01:00
parent 0053a14965
commit 30bd8ac751
2 changed files with 1 additions and 1 deletions

View File

@ -190,6 +190,7 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
border-radius: 4px; border-radius: 4px;
display: block;
} }
/** Player controls **/ /** Player controls **/

View File

@ -26,7 +26,6 @@ body {
controlBones: ["root"], controlBones: ["root"],
backgroundColor: "#cccccc", backgroundColor: "#cccccc",
fullScreenBackgroundColor: "#cc0000", fullScreenBackgroundColor: "#cc0000",
showControls: false,
}); });
</script> </script>
</body> </body>