buddy-workbench 0.1.35 → 0.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ui/dist/index.html
CHANGED
|
@@ -28,10 +28,83 @@
|
|
|
28
28
|
<link rel="apple-touch-icon" href="/devbuddy-180.png" />
|
|
29
29
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
30
30
|
<title>DevBuddy · Workbench</title>
|
|
31
|
-
<
|
|
32
|
-
|
|
31
|
+
<style>
|
|
32
|
+
#app-splash {
|
|
33
|
+
position: fixed;
|
|
34
|
+
inset: 0;
|
|
35
|
+
z-index: 9999;
|
|
36
|
+
display: grid;
|
|
37
|
+
place-items: center;
|
|
38
|
+
background: #101522;
|
|
39
|
+
opacity: 1;
|
|
40
|
+
transition: opacity 650ms cubic-bezier(.22, 1, .36, 1);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
html[data-theme="light"] #app-splash {
|
|
44
|
+
background: #f7f8fc;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#app-splash.is-hidden {
|
|
48
|
+
opacity: 0;
|
|
49
|
+
pointer-events: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.app-splash-logo {
|
|
53
|
+
display: block;
|
|
54
|
+
width: 96px;
|
|
55
|
+
height: 96px;
|
|
56
|
+
border-radius: 22%;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.app-splash-content {
|
|
60
|
+
display: grid;
|
|
61
|
+
justify-items: center;
|
|
62
|
+
gap: 18px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.app-splash-status {
|
|
66
|
+
display: inline-flex;
|
|
67
|
+
align-items: center;
|
|
68
|
+
gap: 9px;
|
|
69
|
+
color: rgba(255, 255, 255, .72);
|
|
70
|
+
font: 500 14px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
71
|
+
letter-spacing: .02em;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
html[data-theme="light"] .app-splash-status {
|
|
75
|
+
color: #6555e8;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.app-splash-spinner {
|
|
79
|
+
width: 14px;
|
|
80
|
+
height: 14px;
|
|
81
|
+
border: 2px solid currentColor;
|
|
82
|
+
border-right-color: transparent;
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
animation: app-splash-spin 700ms linear infinite;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
@keyframes app-splash-spin {
|
|
88
|
+
to { transform: rotate(360deg); }
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@media (prefers-reduced-motion: reduce) {
|
|
92
|
+
#app-splash { transition-duration: 0ms; }
|
|
93
|
+
}
|
|
94
|
+
</style>
|
|
95
|
+
<script type="module" crossorigin src="/assets/index-BXjE1Yo9.js"></script>
|
|
96
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BpqQHIvr.css">
|
|
33
97
|
</head>
|
|
34
98
|
<body>
|
|
99
|
+
<div id="app-splash" role="status" aria-label="Loading DevBuddy">
|
|
100
|
+
<div class="app-splash-content">
|
|
101
|
+
<img class="app-splash-logo" src="/devbuddy.svg" alt="DevBuddy" />
|
|
102
|
+
<div class="app-splash-status">
|
|
103
|
+
<span class="app-splash-spinner" aria-hidden="true"></span>
|
|
104
|
+
<span>Loading…</span>
|
|
105
|
+
</div>
|
|
106
|
+
</div>
|
|
107
|
+
</div>
|
|
35
108
|
<div id="app"></div>
|
|
36
109
|
</body>
|
|
37
110
|
</html>
|