mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
359d421819
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4976 GitOrigin-RevId: 94b0b87911375996b03d7532ce2ae36cccc8da71
42 lines
961 B
HTML
42 lines
961 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US" data-reactroot="">
|
|
<head>
|
|
<link rel="icon" type="image/png" href="/rstatic/favicon_green.png" />
|
|
<script>
|
|
<%= htmlWebpackPlugin.options.env %>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
.content {
|
|
display: 'none';
|
|
opacity: 0;
|
|
transition: opacity 0.2s linear;
|
|
}
|
|
.content.show {
|
|
display: 'block';
|
|
opacity: 1;
|
|
transition: opacity 0.2s linear;
|
|
}
|
|
</style>
|
|
<div id="loading">
|
|
<div
|
|
class="page-loading"
|
|
style="
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
font-family: sans-serif;
|
|
justify-content: center;
|
|
"
|
|
>
|
|
<span class="" style="font-size: 2em; margin-top: -3em; color: #848484">
|
|
Loading...
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div id="content" class="content"></div>
|
|
</body>
|
|
</html>
|