rivia 0.0.33 → 0.0.34
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/dist/index.js +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -329,10 +329,12 @@ async function fetchWithTimeout(topTitle = "Get Started", subtitle, completion =
|
|
|
329
329
|
const confirmDiv = document.createElement("div");
|
|
330
330
|
confirmDiv.innerHTML = `
|
|
331
331
|
<div style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10000; display: flex; align-items: flex-end; justify-content: flex-start;">
|
|
332
|
-
<div style="background: white;
|
|
333
|
-
<p>Are you sure you want to dismiss this checklist?</p>
|
|
334
|
-
<
|
|
335
|
-
<button id="confirmNo" style="margin: 10px; padding:
|
|
332
|
+
<div style="background: white;width: 250px; border-radius: 10px; text-align: center; margin: 20px;">
|
|
333
|
+
<p style="padding: 15px;">Are you sure you want to dismiss this checklist?</p>
|
|
334
|
+
<hr style="border-top: 2px solid #f33f27ff; margin-left: 10px; margin-right: 10px;">
|
|
335
|
+
<button id="confirmNo" style="margin: 10px; padding: 4px 8px;color: #f33f27ff; border: none; cursor: pointer;">No</button>
|
|
336
|
+
<span style="border-left: 2px solid #f33f27ff;color:#eda600ff; height: 52px; margin: 0 10px; display: inline-block; vertical-align: top;"></span>
|
|
337
|
+
<button id="confirmYes" style="margin: 10px; padding: 4px 8px; color: #f33f27ff; border: none; cursor: pointer;">Yes</button>
|
|
336
338
|
</div>
|
|
337
339
|
</div>
|
|
338
340
|
`;
|