All checks were successful
Windows Release / build-windows (push) Successful in 2m46s
55 lines
1.2 KiB
HTML
55 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; media-src 'self' data:; img-src 'self' data:">
|
|
<title>rmtPocketWatcher</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #0a0e27;
|
|
}
|
|
|
|
#root {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
border: 2px solid #50e3c2;
|
|
box-shadow: 0 0 20px rgba(80, 227, 194, 0.3);
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
#root::-webkit-scrollbar {
|
|
width: 12px;
|
|
}
|
|
|
|
#root::-webkit-scrollbar-track {
|
|
background: #1a1f3a;
|
|
}
|
|
|
|
#root::-webkit-scrollbar-thumb {
|
|
background: #50e3c2;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
#root::-webkit-scrollbar-thumb:hover {
|
|
background: #3cc9a8;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/renderer/index.tsx"></script>
|
|
</body>
|
|
</html>
|