-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 801 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (21 loc) · 801 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" />
<!-- maximum-scale + user-scalable=no: kill iOS Safari's auto-zoom on focusing a sub-16px
input (this admin is a 12px-dense monospace tool). Internal expert tool, so disabling
pinch-zoom is an accepted trade for never zooming on input focus. -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<meta name="description" content="grbpwr admin panel" />
<title>GRBPWR</title>
<link rel="icon" type="image/svg+xml" href="/favico.svg" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>