Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ const config: ForgeConfig = {
'./resources/json_output.py',
'./resources/entrypoint.js',
'./resources/replay.js',
'./resources/splashscreen.html',
'./resources/logo-splashscreen-dark.svg',
'./resources/logo-splashscreen.svg',
...getPlatformSpecificResources(),
],
windowsSign,
Expand Down
32 changes: 31 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,37 @@
<title>Grafana k6 Studio</title>
</head>
<body>
<div id="root"></div>
<div id="root">
<div class="app-loading">
<div class="app-loading-spinner"></div>
</div>
</div>
<style>
body { margin: 0; }
.app-loading {
display: flex;
align-items: center;
justify-content: center;
height: 100dvh;
background: #fff;
}
.app-loading-spinner {
width: 24px;
height: 24px;
border: 2px solid #e5e5e5;
border-top-color: #999;
border-radius: 50%;
animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-color-scheme: dark) {
.app-loading { background: #111110; }
.app-loading-spinner {
border-color: #333;
border-top-color: #888;
}
}
</style>
<script type="module" src="/src/renderer.ts"></script>
</body>
</html>
19 changes: 0 additions & 19 deletions resources/logo-splashscreen-dark.svg

This file was deleted.

19 changes: 0 additions & 19 deletions resources/logo-splashscreen.svg

This file was deleted.

86 changes: 0 additions & 86 deletions resources/splashscreen.html

This file was deleted.

Loading
Loading