fix(web): increase sidebar breakpoint (#17436)

This commit is contained in:
Ben
2025-04-10 13:00:30 -04:00
committed by GitHub
parent 6d3f3d8616
commit e3995fb5f4
9 changed files with 145 additions and 49 deletions

View File

@@ -110,7 +110,7 @@
<div>
<Icon
path={mdiInformationOutline}
class="hidden md:flex text-immich-primary dark:text-immich-dark-primary font-medium"
class="hidden sidebar:flex text-immich-primary dark:text-immich-dark-primary font-medium"
size="18"
/>
</div>
@@ -123,7 +123,7 @@
{#if showMessage}
<dialog
open
class="hidden md:block w-[500px] absolute bottom-[75px] left-[255px] bg-gray-50 dark:border-gray-800 border border-gray-200 dark:bg-immich-dark-gray dark:text-white text-black rounded-3xl z-10 shadow-2xl px-8 py-6"
class="hidden sidebar:block w-[500px] absolute bottom-[75px] left-[255px] bg-gray-50 dark:border-gray-800 border border-gray-200 dark:bg-immich-dark-gray dark:text-white text-black rounded-3xl z-10 shadow-2xl px-8 py-6"
transition:fade={{ duration: 150 }}
onmouseover={() => (hoverMessage = true)}
onmouseleave={() => (hoverMessage = false)}