-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.17 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="Description" content="Put your description here." />
<meta name="theme-color" content="#344675" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#344675" />
<meta name="apple-mobile-web-app-title" content="RbbCleaning" />
<base href="/" />
<style media="screen">
body {
background: #eceff1;
color: rgba(0, 0, 0, 0.87);
font-family: Roboto, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
@media (max-width: 600px) {
body {
margin-top: 0;
box-shadow: none;
border-top: 16px solid #ffa100;
}
}
</style>
<title>rbb-cleaning</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="icon" href="favicon.svg" />
<!-- MANIFEST -->
</head>
<body>
<div id="outlet"></div>
<script type="module" src="./out-tsc/src/index.js"></script>
</body>
</html>