File size: 367 Bytes
0c3e3b2
 
 
 
 
 
 
 
 
2e4269d
0c3e3b2
1
2
3
4
5
6
7
8
9
10
11
12
<script lang="ts">
	import Modal from "$lib/components/Modal.svelte";
	import ToolEdit from "../ToolEdit.svelte";
</script>

<Modal
	on:close={() => window.history.back()}
	width="h-[95dvh] w-[90dvw] overflow-hidden rounded-2xl bg-white shadow-2xl outline-none sm:h-[85dvh] xl:w-[1200px] 2xl:h-[75dvh]"
>
	<ToolEdit on:close={() => window.history.back()} />
</Modal>