Intial Version

This commit is contained in:
2025-12-03 18:00:10 -05:00
parent 43c4227da7
commit 0b86c88eb4
55 changed files with 8938 additions and 0 deletions

51
electron-app/index.html Normal file
View File

@@ -0,0 +1,51 @@
<!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;
}
#root {
width: 100%;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
/* 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>