pinokiod 3.289.0 → 3.290.0
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/package.json
CHANGED
|
@@ -368,8 +368,10 @@
|
|
|
368
368
|
const iconWrapper = document.createElement('div');
|
|
369
369
|
iconWrapper.className = 'create-launcher-modal-icon';
|
|
370
370
|
|
|
371
|
-
const headerIcon = document.createElement('
|
|
372
|
-
headerIcon.
|
|
371
|
+
const headerIcon = document.createElement('img');
|
|
372
|
+
headerIcon.src = '/pinokio-black.png';
|
|
373
|
+
headerIcon.alt = 'Pinokio logo';
|
|
374
|
+
headerIcon.className = 'create-launcher-modal-logo';
|
|
373
375
|
iconWrapper.appendChild(headerIcon);
|
|
374
376
|
|
|
375
377
|
const headingStack = document.createElement('div');
|
|
@@ -216,7 +216,7 @@ body.dark .create-launcher-page-card {
|
|
|
216
216
|
.create-launcher-modal-header {
|
|
217
217
|
display: flex;
|
|
218
218
|
align-items: center;
|
|
219
|
-
gap:
|
|
219
|
+
gap: 10px;
|
|
220
220
|
padding-bottom: 4px;
|
|
221
221
|
position: relative;
|
|
222
222
|
}
|
|
@@ -246,23 +246,10 @@ body.dark .create-launcher-modal-close {
|
|
|
246
246
|
body.dark .create-launcher-modal-close:hover {
|
|
247
247
|
color: #a5b4fc;
|
|
248
248
|
}
|
|
249
|
-
.create-launcher-modal-icon
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
display: inline-flex;
|
|
254
|
-
align-items: center;
|
|
255
|
-
justify-content: center;
|
|
256
|
-
background: black;
|
|
257
|
-
/*
|
|
258
|
-
background: linear-gradient(135deg, rgba(127, 91, 243, 0.9), rgba(95, 64, 216, 0.9));
|
|
259
|
-
*/
|
|
260
|
-
color: white;
|
|
261
|
-
box-shadow: 0 18px 40px rgba(111, 76, 242, 0.3);
|
|
262
|
-
flex-shrink: 0;
|
|
263
|
-
}
|
|
264
|
-
.create-launcher-modal-icon i {
|
|
265
|
-
font-size: 18px;
|
|
249
|
+
.create-launcher-modal-icon img,
|
|
250
|
+
.create-launcher-modal-logo {
|
|
251
|
+
width: 60px;
|
|
252
|
+
height: 60px;
|
|
266
253
|
}
|
|
267
254
|
.create-launcher-modal-headings {
|
|
268
255
|
display: flex;
|