1
0
Fork 0
mirror of synced 2024-09-12 07:27:20 +12:00

Split buttons into left and right sides

This commit is contained in:
Andrew Kingston 2022-04-07 15:32:46 +01:00
parent 2a5b81a40a
commit 7a2a7bfc87

View file

@ -138,9 +138,7 @@
<CreateViewButton disabled={!hasCols || !hasRows} />
{/if}
</div>
<div class="right-buttons" />
</div>
{#if hasCols}
<div class="right-buttons">
<ManageAccessButton resourceId={$tables.selected?._id} />
{#if isUsersTable}
<EditRolesButton />
@ -161,7 +159,8 @@
{#key id}
<TableFilterButton {schema} on:change={onFilter} />
{/key}
{/if}
</div>
</div>
<div slot="placeholder">
<Layout gap="S">
<Heading>Let's create some columns!</Heading>
@ -195,4 +194,11 @@
align-items: center;
margin-top: var(--spacing-xl);
}
.buttons {
flex: 1 1 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
</style>