@things-factory/reference-app 6.2.166 → 6.2.167
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_index.html +2 -26
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +34 -34
- package/views/auth-page.html +1 -18
- package/views/public/home.html +1 -18
package/_index.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!doctype html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
@@ -53,31 +53,7 @@
|
|
|
53
53
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
|
54
54
|
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
|
55
55
|
|
|
56
|
-
|
|
57
|
-
<style>
|
|
58
|
-
body {
|
|
59
|
-
margin: 0;
|
|
60
|
-
padding: 0;
|
|
61
|
-
overflow: hidden;
|
|
62
|
-
|
|
63
|
-
overscroll-behavior-y: none;
|
|
64
|
-
|
|
65
|
-
/* This is a font-stack that tries to use the system-default sans-serifs first */
|
|
66
|
-
font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
67
|
-
line-height: 1.5;
|
|
68
|
-
-webkit-font-smoothing: antialiased;
|
|
69
|
-
|
|
70
|
-
accent-color: var(--primary-color);
|
|
71
|
-
}
|
|
72
|
-
</style>
|
|
73
|
-
|
|
74
|
-
<script>
|
|
75
|
-
if ('serviceWorker' in navigator) {
|
|
76
|
-
navigator.serviceWorker.register('/service-worker.js', {
|
|
77
|
-
scope: '/'
|
|
78
|
-
})
|
|
79
|
-
}
|
|
80
|
-
</script>
|
|
56
|
+
<script src="/static/index.js" defer></script>
|
|
81
57
|
</head>
|
|
82
58
|
|
|
83
59
|
<body>
|