-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
28 lines (28 loc) · 1020 Bytes
/
settings.html
File metadata and controls
28 lines (28 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!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 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' media: data: blob:; media-src 'self' media:; font-src 'self'; connect-src 'self' ws://127.0.0.1:*; object-src 'none'; frame-src 'none'; base-uri 'none'; form-action 'none';" />
<title>Settings</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
/* Match Eagle: on macOS with vibrancy the window is translucent,
on other platforms fall back to a solid dark background */
background-color: #1e1e22;
}
#root {
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/entrypoints/settings.tsx"></script>
</body>
</html>