-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 889 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SuperDoc + Liveblocks</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, sans-serif; }
.app { display: flex; flex-direction: column; height: 100vh; }
header { padding: 1rem; background: #f5f5f5; border-bottom: 1px solid #ddd; display: flex; justify-content: space-between; align-items: center; }
.users { display: flex; gap: 0.5rem; }
.user { padding: 0.25rem 0.5rem; border-radius: 4px; color: white; font-size: 0.875rem; }
main { flex: 1; overflow: auto; }
.superdoc-container { height: 100%; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>