Move 'Add' button on album user invite to the same row as 'To' List (#6447)

Move 'Add' button on album user invite to the same row as 'To' List in order to prevent the button getting hidden by a scrollbar
This commit is contained in:
Alexander Welsing
2024-01-17 15:43:41 +01:00
committed by GitHub
parent 4c2befc68c
commit 702e91145a

View File

@@ -76,6 +76,9 @@
</button> </button>
{/key} {/key}
{/each} {/each}
<div class="flex place-content-end mr-0 ml-auto p-5">
<Button size="sm" rounded="lg" on:click={() => dispatch('select', selectedUsers)}>Add</Button>
</div>
</div> </div>
{/if} {/if}
@@ -113,12 +116,6 @@
Looks like you have shared this album with all users or you don't have any user to share with. Looks like you have shared this album with all users or you don't have any user to share with.
</p> </p>
{/if} {/if}
{#if selectedUsers.length > 0}
<div class="flex place-content-end p-5">
<Button size="sm" rounded="lg" on:click={() => dispatch('select', selectedUsers)}>Add</Button>
</div>
{/if}
</div> </div>
<hr /> <hr />