Files
HRiggs b7c2e0fc24
Some checks failed
Deploy Backend to Docker / deploy (push) Failing after 6m13s
Deploy Backend to Docker / deploy-portainer (push) Has been skipped
Tons of Stuff
2025-12-03 20:19:40 -05:00

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'">
<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>