Move style to new file 'style.css'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luca 2020-10-08 17:53:59 +02:00
parent 3805e48075
commit a00ff16a2d
3 changed files with 6 additions and 6 deletions

View File

@ -3,13 +3,8 @@
<head>
<meta charset="utf-8">
<title>Stream playout</title>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="main.css">
<style>
body {
height: 100vh;
margin: 0;
}
</style>
</head>
<body>
<video class="video-js vjs-fill" autoplay controls data-setup='{}'>

View File

@ -1,2 +1,3 @@
import videojs from 'video.js';
import 'video.js/dist/video-js.css';
import './style.css';

View File

@ -0,0 +1,4 @@
body {
height: 100vh;
margin: 0;
}