|
@@ -15,6 +15,7 @@
|
|
|
import CustomNode from './Overview/Node.svelte';
|
|
|
import Flow from './Overview/Flow.svelte';
|
|
|
import XMark from '../icons/XMark.svelte';
|
|
|
+ import ArrowLeft from '../icons/ArrowLeft.svelte';
|
|
|
|
|
|
const { width, height } = useStore();
|
|
|
|
|
@@ -159,16 +160,26 @@
|
|
|
</script>
|
|
|
|
|
|
<div class="w-full h-full relative">
|
|
|
- <div class=" absolute z-50 w-full flex justify-between dark:text-gray-100 px-5 py-4">
|
|
|
- <div class=" text-lg font-medium self-center font-primary">{$i18n.t('Chat Overview')}</div>
|
|
|
+ <div class=" absolute z-50 w-full flex justify-between dark:text-gray-100 px-4 py-3.5">
|
|
|
+ <div class="flex items-center gap-2.5">
|
|
|
+ <button
|
|
|
+ class="self-center p-0.5"
|
|
|
+ on:click={() => {
|
|
|
+ showOverview.set(false);
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ <ArrowLeft className="size-3.5" />
|
|
|
+ </button>
|
|
|
+ <div class=" text-lg font-medium self-center font-primary">{$i18n.t('Chat Overview')}</div>
|
|
|
+ </div>
|
|
|
<button
|
|
|
- class="self-center"
|
|
|
+ class="self-center p-0.5"
|
|
|
on:click={() => {
|
|
|
dispatch('close');
|
|
|
showOverview.set(false);
|
|
|
}}
|
|
|
>
|
|
|
- <XMark className="size-4" />
|
|
|
+ <XMark className="size-3.5" />
|
|
|
</button>
|
|
|
</div>
|
|
|
|