Skip to content

Commit 1316d50

Browse files
committed
Update loading.html
1 parent 3cba1f0 commit 1316d50

File tree

1 file changed

+40
-40
lines changed

1 file changed

+40
-40
lines changed

app/html/pages/loading.html

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en" dir="ltr">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7-
<title>MetaMask Loading</title>
8-
<% if (it.shouldIncludeSnow) { %>
9-
<script src="@lavamoat/snow/snow.prod.js"></script>
10-
<script src="../../scripts/use-snow.js"></script>
11-
<% } %>
12-
<style>
13-
#div-logo {
14-
position: absolute;
15-
top: 50%;
16-
left: 50%;
17-
transform: translate(-50%, -50%);
18-
text-align: center;
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>MetaMask Loading</title>
8+
<% if (it.shouldIncludeSnow) { %>
9+
<script src="@lavamoat/snow/snow.prod.js"></script>
10+
<script src="../../scripts/use-snow.js"></script>
11+
<% } %>
12+
<style>
13+
#div-logo {
14+
position: absolute;
15+
top: 50%;
16+
left: 50%;
17+
transform: translate(-50%, -50%);
18+
text-align: center;
19+
}
20+
#logo {
21+
width: 256px;
22+
animation: pulse 1s ease-in-out infinite;
23+
}
24+
@keyframes pulse {
25+
0% {
26+
opacity: 1;
1927
}
20-
#logo {
21-
width: 256px;
22-
animation: pulse 1s ease-in-out infinite;
28+
50% {
29+
opacity: 0.5;
30+
transform: scale(0.95, 0.95);
2331
}
24-
@keyframes pulse {
25-
0% {
26-
opacity: 1;
27-
}
28-
50% {
29-
opacity: 0.5;
30-
transform: scale(0.95, 0.95);
31-
}
32-
100% {
33-
opacity: 1;
34-
}
32+
100% {
33+
opacity: 1;
3534
}
36-
</style>
37-
</head>
38-
<body>
39-
<div id="div-logo">
40-
<img id="logo" src="../../images/enslogo.svg" loading="lazy" />
41-
<h1 class="center">MetaMask is querying ENS ...</h1>
42-
</div>
43-
</body>
44-
</html>
35+
}
36+
</style>
37+
</head>
38+
<body>
39+
<div id="div-logo">
40+
<img id="logo" src="../../images/enslogo.svg" loading="lazy">
41+
<h1 class="center">MetaMask is querying ENS ...</h1>
42+
</div>
43+
</body>
44+
</html>

0 commit comments

Comments
 (0)