Timothy J. Baek 8 months ago
parent
commit
21e81d78d9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/components/common/Drawer.svelte

+ 2 - 2
src/lib/components/common/Drawer.svelte

@@ -58,14 +58,14 @@
 <!-- svelte-ignore a11y-no-static-element-interactions -->
 <!-- svelte-ignore a11y-no-static-element-interactions -->
 <div
 <div
 	bind:this={modalElement}
 	bind:this={modalElement}
-	class="modal fixed top-0 right-0 left-0 bottom-0 bg-black/60 w-full min-h-screen h-screen flex justify-center z-[9999] overflow-hidden overscroll-contain"
+	class="modal fixed right-0 left-0 bottom-0 bg-black/60 w-full min-h-screen h-screen flex justify-center z-[9999] overflow-hidden overscroll-contain"
 	in:flyAndScale
 	in:flyAndScale
 	on:mousedown={() => {
 	on:mousedown={() => {
 		show = false;
 		show = false;
 	}}
 	}}
 >
 >
 	<div
 	<div
-		class=" m-auto max-w-full w-full bg-gray-50 dark:bg-gray-900 max-h-[100dvh] overflow-y-auto scrollbar-hidden"
+		class=" mt-auto max-w-full w-full bg-gray-50 dark:bg-gray-900 max-h-[100dvh] overflow-y-auto scrollbar-hidden"
 		on:mousedown={(e) => {
 		on:mousedown={(e) => {
 			e.stopPropagation();
 			e.stopPropagation();
 		}}
 		}}