Skip to content

Commit ed76519

Browse files
Release version 2.0.7 to PRD
1 parent 5f8c6a4 commit ed76519

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

index.html

+22-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,25 @@
1616
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1717
-->
1818
<link rel="manifest" href="/seed-project/manifest.json" />
19+
<style>
20+
@keyframes animation-spinner {
21+
0% {transform: rotate(0deg)}
22+
100% {transform: rotate(360deg)}
23+
}
24+
.spinner {
25+
border-top: 2px solid currentcolor;
26+
border-right: 2px solid currentcolor;
27+
border-bottom: 2px solid transparent;
28+
border-left: 2px solid transparent;
29+
border-radius: 100%;
30+
width: 28px;
31+
height: 28px;
32+
animation: 0.45s linear 0s infinite animation-spinner;
33+
position: absolute;
34+
top: calc(50% - 16px);
35+
left: calc(50% - 16px);
36+
}
37+
</style>
1938

2039
<title>Seed Project</title>
2140
<script type="module" crossorigin src="/seed-project/assets/index-TsS8R41F.js"></script>
@@ -26,7 +45,9 @@
2645
</head>
2746
<body>
2847
<noscript>You need to enable JavaScript to run this app.</noscript>
29-
<div id="root"></div>
48+
<div id="root">
49+
<div class="spinner"></div>
50+
</div>
3051

3152
<script nomodule>!function(){var e=document,t=e.createElement("script");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;e.addEventListener("beforeload",(function(e){if(e.target===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()}),!0),t.type="module",t.src=".",e.head.appendChild(t),t.remove()}}();</script>
3253
<script nomodule crossorigin id="vite-legacy-polyfill" src="/seed-project/assets/polyfills-legacy-vEC2aUsu.js"></script>

info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"component": "seed-project",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"environment": "PRD",
55
"instance": "GitHub"
66
}

0 commit comments

Comments
 (0)