mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
fix(web): Remove excess spacing on #asset-grid and search bar (#7910)
* fix(web): Remove excess left-margin on #asset-grid * fix(web): Remove excess left-padding on search bar --------- Co-authored-by: natedawg <nate@natedawg.net>
This commit is contained in:
parent
b07ed3f615
commit
92804fe4b2
2 changed files with 2 additions and 2 deletions
|
@ -387,7 +387,7 @@
|
||||||
<!-- Right margin MUST be equal to the width of immich-scrubbable-scrollbar -->
|
<!-- Right margin MUST be equal to the width of immich-scrubbable-scrollbar -->
|
||||||
<section
|
<section
|
||||||
id="asset-grid"
|
id="asset-grid"
|
||||||
class="scrollbar-hidden h-full overflow-y-auto pb-[60px] {isEmpty ? 'm-0' : 'ml-4 mr-[60px]'}"
|
class="scrollbar-hidden h-full overflow-y-auto pb-[60px] {isEmpty ? 'm-0' : 'mr-[60px]'}"
|
||||||
bind:clientHeight={viewport.height}
|
bind:clientHeight={viewport.height}
|
||||||
bind:clientWidth={viewport.width}
|
bind:clientWidth={viewport.width}
|
||||||
bind:this={element}
|
bind:this={element}
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
</h1>
|
</h1>
|
||||||
</a>
|
</a>
|
||||||
<div class="flex justify-between gap-16 pr-6">
|
<div class="flex justify-between gap-16 pr-6">
|
||||||
<div class="hidden w-full max-w-5xl flex-1 pl-4 sm:block">
|
<div class="hidden w-full max-w-5xl flex-1 sm:block">
|
||||||
{#if $featureFlags.search}
|
{#if $featureFlags.search}
|
||||||
<SearchBar grayTheme={true} />
|
<SearchBar grayTheme={true} />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
Loading…
Reference in a new issue