Skip to content

Commit c2840eb

Browse files
authored
Various restyle features and upgrades (#118)
* Changing header and footer style * Updating all packages and running linter * Restyling overall app
1 parent c71349c commit c2840eb

25 files changed

+2019
-2366
lines changed

index.html

Lines changed: 27 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,34 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<link
6-
rel="stylesheet"
7-
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500"
8-
/>
9-
<link
10-
href="https://api.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.css"
11-
rel="stylesheet"
12-
/>
13-
<meta name="viewport" content="width=device-width, initial-scale=1" />
14-
<meta name="theme-color" content="#000000" />
15-
<!--
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" />
7+
<link href="https://api.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.css" rel="stylesheet" />
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<meta name="theme-color" content="#000000" />
10+
<!--
1611
manifest.json provides metadata used when your web app is installed on a
1712
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1813
-->
19-
<link rel="manifest" href="/manifest.json" />
20-
<title>Mobile libraries</title>
14+
<link rel="manifest" href="/manifest.json" />
15+
<title>Mobile libraries</title>
16+
17+
<script>
18+
(function () {
19+
var redirect = sessionStorage.redirect
20+
delete sessionStorage.redirect
21+
if (redirect && redirect != location.href) {
22+
history.replaceState(null, null, redirect)
23+
}
24+
})()
25+
</script>
26+
</head>
2127

22-
<script>
23-
;(function () {
24-
var redirect = sessionStorage.redirect
25-
delete sessionStorage.redirect
26-
if (redirect && redirect != location.href) {
27-
history.replaceState(null, null, redirect)
28-
}
29-
})()
30-
</script>
31-
</head>
28+
<body>
29+
<noscript>You need to enable JavaScript to run this app.</noscript>
30+
<div id="root"></div>
31+
<script type="module" src="/src/index.jsx"></script>
32+
</body>
3233

33-
<body>
34-
<noscript>You need to enable JavaScript to run this app.</noscript>
35-
<div id="root"></div>
36-
<script type="module" src="/src/index.jsx"></script>
37-
</body>
38-
</html>
34+
</html>

0 commit comments

Comments
 (0)