mirror of
https://github.com/immich-app/immich.git
synced 2025-01-21 00:52:43 -05:00
Fixed drag-and-drop overlay blocks scrolling
This commit is contained in:
parent
9e6d6b2532
commit
d327ec6ba4
2 changed files with 13 additions and 11 deletions
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" class="dark">
|
<html lang="en" class="dark">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
|
@ -7,7 +8,8 @@
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="bg-immich-bg dark:bg-immich-dark-bg fixed inset-0 w-full h-full">
|
<body class="bg-immich-bg dark:bg-immich-dark-bg">
|
||||||
<div class="fixed inset-0 w-full h-full">%sveltekit.body%</div>
|
<div>%sveltekit.body%</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -77,7 +77,7 @@
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main on:dragenter={() => (showUploadCover = true)} class="fixed inset-0 w-full h-full">
|
<main on:dragenter={() => (showUploadCover = true)}>
|
||||||
{#if canShow}
|
{#if canShow}
|
||||||
<div in:fade={{ duration: 100 }}>
|
<div in:fade={{ duration: 100 }}>
|
||||||
{#if showNavigationLoadingBar}
|
{#if showNavigationLoadingBar}
|
||||||
|
|
Loading…
Add table
Reference in a new issue