Adding a bit of padding to bottom of rest interface in case scrolling occurs.

This commit is contained in:
mike12345567 2021-12-08 18:06:11 +00:00
parent 82fd691ec7
commit 8077ba8d37
1 changed files with 67 additions and 62 deletions

View File

@ -236,6 +236,7 @@
</Tabs>
</Layout>
</div>
<div class="bottom">
<Layout paddingY="S" gap="S">
<Divider size="S" />
{#if !response}
@ -301,6 +302,7 @@
{/if}
</Layout>
</div>
</div>
{/if}
<style>
@ -322,6 +324,9 @@
.top {
min-height: 50%;
}
.bottom {
padding-bottom: 50px;
}
.stats {
display: flex;
gap: var(--spacing-xl);