tweak(dashboard): add a little bit of extra space at the bottom of lists (for mobile convenience)

This commit is contained in:
Jake Fulmine 2024-02-18 15:01:02 +01:00
parent 6d7e3d2d04
commit 7d01c02de0
5 changed files with 8 additions and 0 deletions

View file

@ -97,6 +97,7 @@
{/if}
<ListPagination bind:currentPage={pageOptions.currentPage} {pageAmount} />
{/if}
<div class="spacer"></div>
<style>
.itemcounter {

View file

@ -97,6 +97,7 @@
{/if}
<ListPagination bind:currentPage={pageOptions.currentPage} {pageAmount} />
{/if}
<div class="spacer"></div>
<style>
.itemcounter {

View file

@ -195,6 +195,7 @@
<ListView {pageOptions} currentList={currentPage} fullListLength={groupMembers.length} options={listOptions}/>
{/if}
<ListPagination bind:currentPage={pageOptions.currentPage} {pageAmount} />
<div class="spacer"></div>
{/if}
{/if}
</Col>

View file

@ -197,6 +197,7 @@
<ListView {pageOptions} currentList={currentPage} fullListLength={memberGroups.length} options={listOptions} />
{/if}
<ListPagination bind:currentPage={pageOptions.currentPage} {pageAmount} />
<div class="spacer"></div>
{/if}
{/if}
</Col>

View file

@ -89,6 +89,10 @@ code {
text-decoration: none;
}
.spacer {
height: 5rem;
}
// bootstrap elements
.container {
flex: 1 0 auto !important;