jellyfin-vue/frontend/index.html
2023-04-03 12:52:57 +02:00

41 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<style>
html > body > div#app > div.splashLogo {
background: #111827;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
}
.splashLogo {
width: 30%;
height: 30%;
/* This file is in the 'static' folder, so it will be placed at the root when the client is built */
background-image: url(icon.png);
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}
</style>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
/>
<title>Jellyfin</title>
</head>
<body>
<div id="app">
<div class="splashLogo"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>