Minor UI changes
This commit is contained in:
parent
404bd50cd3
commit
867626024f
3 changed files with 6 additions and 5 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
#logo {
|
||||
|
||||
width: calc(100vw - 20px);
|
||||
width: calc(100vw + 50px);
|
||||
|
||||
background: var(--dark-1);
|
||||
|
||||
|
|
|
@ -29,7 +29,8 @@
|
|||
|
||||
<p>
|
||||
{#if data.id > 0}
|
||||
<Button clickFunc={() => { window.location.search = setLocation(window.location,'page',((data.id)-1)) }}>Previous page</Button>
|
||||
<a on:click={() => { window.location.search = setLocation(window.location,'page',((data.id)-1)) }} href='#'>← Page {(data.id)-1}</a>
|
||||
{/if}
|
||||
<Button clickFunc={() => { window.location.search = setLocation(window.location,'page',((data.id)+1)) }}>Next page</Button>
|
||||
<b>Page {(data.id)}</b>
|
||||
<a on:click={() => { window.location.search = setLocation(window.location,'page',((data.id)+1)) }} href='#'>Page {(data.id)+1} →</a>
|
||||
</p>
|
|
@ -3,7 +3,7 @@
|
|||
background: var(--light-2);
|
||||
|
||||
height: 100vh;
|
||||
width: calc(100vw - 50px);
|
||||
width: 100vw;
|
||||
padding: 25px;
|
||||
padding-top: 0px;
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
:global(:root) {
|
||||
|
|
Loading…
Reference in a new issue