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

	export let form;
</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 bind:form on:close={() => window.history.back()} />
</Modal>