amical/apps/electron/fab.html
Haritabh b01a112102
feat: electron app init & setup (#10)
* feat: electron app init & setup

* fix: swift io bridge naming

* chore: deps fix
2025-05-19 22:54:10 +05:30

27 lines
No EOL
756 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Floating Button</title>
<style>
body {
margin: 0;
overflow: hidden; /* Prevent scrollbars on the tiny window */
background-color: transparent; /* Ensure body is transparent */
font-family: sans-serif;
}
#root {
width: 100%;
height: 100%;
display: flex;
align-items: flex-end; /* Align to bottom */
justify-content: center; /* Center horizontally */
}
</style>
</head>
<body>
<div id="root" style="position: absolute; top: 0; left: 0; right: 0; bottom: 0;"></div>
<!-- This script tag will point to the TSX file for Vite to process -->
<script type="module" src="src/renderer/fab.tsx"></script>
</body>
</html>