-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPig.html
More file actions
46 lines (43 loc) · 997 Bytes
/
Copy pathPig.html
File metadata and controls
46 lines (43 loc) · 997 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EcoCity</title>
<link rel="stylesheet" href="/public/styles/globals.css" />
<link rel="icon" type="image/svg+xml" href="/public/images/favicon.svg" />
<style>
@import "/public/styles/globals.css";
body,
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
app-root {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
overflow-x: hidden;
}
::part(app-content) {
overflow-y: auto;
}
</style>
</head>
<body>
<App />
<script type="application/json" id="piglet-config">
{
"allowDebugging": true,
"enableCoreLogs": {
"info": false,
"warn": false,
"error": true
}
}
</script>
</body>
</html>