|
@@ -10,6 +10,7 @@
|
|
import ArrowsPointingOut from '../icons/ArrowsPointingOut.svelte';
|
|
import ArrowsPointingOut from '../icons/ArrowsPointingOut.svelte';
|
|
import Tooltip from '../common/Tooltip.svelte';
|
|
import Tooltip from '../common/Tooltip.svelte';
|
|
import SvgPanZoom from '../common/SVGPanZoom.svelte';
|
|
import SvgPanZoom from '../common/SVGPanZoom.svelte';
|
|
|
|
+ import ArrowLeft from '../icons/ArrowLeft.svelte';
|
|
|
|
|
|
export let overlay = false;
|
|
export let overlay = false;
|
|
export let history;
|
|
export let history;
|
|
@@ -183,6 +184,17 @@
|
|
<div class=" absolute top-0 left-0 right-0 bottom-0 z-10"></div>
|
|
<div class=" absolute top-0 left-0 right-0 bottom-0 z-10"></div>
|
|
{/if}
|
|
{/if}
|
|
|
|
|
|
|
|
+ <div class="absolute pointer-events-none z-50 w-full flex items-center justify-start p-4">
|
|
|
|
+ <button
|
|
|
|
+ class="self-center pointer-events-auto p-1 rounded-full bg-white dark:bg-gray-850"
|
|
|
|
+ on:click={() => {
|
|
|
|
+ showArtifacts.set(false);
|
|
|
|
+ }}
|
|
|
|
+ >
|
|
|
|
+ <ArrowLeft className="size-3.5" />
|
|
|
|
+ </button>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
<div class=" absolute pointer-events-none z-50 w-full flex items-center justify-end p-4">
|
|
<div class=" absolute pointer-events-none z-50 w-full flex items-center justify-end p-4">
|
|
<button
|
|
<button
|
|
class="self-center pointer-events-auto p-1 rounded-full bg-white dark:bg-gray-850"
|
|
class="self-center pointer-events-auto p-1 rounded-full bg-white dark:bg-gray-850"
|
|
@@ -192,7 +204,7 @@
|
|
showArtifacts.set(false);
|
|
showArtifacts.set(false);
|
|
}}
|
|
}}
|
|
>
|
|
>
|
|
- <XMark className="size-3 text-gray-900 dark:text-white" />
|
|
|
|
|
|
+ <XMark className="size-3.5 text-gray-900 dark:text-white" />
|
|
</button>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
|