Skip to content

Commit a322932

Browse files
committed
Reduce bottom padding on show more
1 parent 8e0d18c commit a322932

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • src/routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/export

src/routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/export/+page.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
</div>
215215

216216
{#if hasMoreColumns}
217-
<div>
217+
<div class="show-more-wrapper">
218218
<Button compact on:click={() => (showAllColumns = !showAllColumns)}>
219219
{showAllColumns ? 'Show less' : 'Show more'}
220220
</Button>
@@ -307,6 +307,10 @@
307307
column-gap: 1rem;
308308
}
309309
310+
.show-more-wrapper {
311+
margin-bottom: -0.2rem;
312+
}
313+
310314
.disabled-checkbox :global(*) {
311315
cursor: unset;
312316
}

0 commit comments

Comments
 (0)