1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-25 10:43:13 +02:00

Fixed drag-and-drop overlay blocks scrolling

This commit is contained in:
Alex Tran 2023-01-03 11:46:53 -06:00
parent 9e6d6b2532
commit d327ec6ba4
No known key found for this signature in database
GPG Key ID: E4954BC787B85C8A
2 changed files with 13 additions and 11 deletions

View File

@ -1,13 +1,15 @@
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body class="bg-immich-bg dark:bg-immich-dark-bg fixed inset-0 w-full h-full">
<div class="fixed inset-0 w-full h-full">%sveltekit.body%</div>
</body>
</html>
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body class="bg-immich-bg dark:bg-immich-dark-bg">
<div>%sveltekit.body%</div>
</body>
</html>

View File

@ -77,7 +77,7 @@
};
</script>
<main on:dragenter={() => (showUploadCover = true)} class="fixed inset-0 w-full h-full">
<main on:dragenter={() => (showUploadCover = true)}>
{#if canShow}
<div in:fade={{ duration: 100 }}>
{#if showNavigationLoadingBar}