Skip to content

Commit

Permalink
fix: remove container list overlay button from login page
Browse files Browse the repository at this point in the history
  • Loading branch information
knrdl committed Jan 4, 2023
1 parent 2a5de9b commit e3ca240
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions client/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@

<main>
<header>
<a href="/#/" class="d-md-none d-flex justify-content-center align-items-center"
on:click|preventDefault={()=>showContainerListOverlay = !showContainerListOverlay}>
<Fa icon={faBars} color="#123" size="2x" style="width: 3rem;height: 3rem;"/>
</a>
{#if loggedInUsername}
<a href="/#/" class="d-md-none d-flex justify-content-center align-items-center"
on:click|preventDefault={()=>showContainerListOverlay = !showContainerListOverlay}>
<Fa icon={faBars} color="#123" size="2x" style="width: 3rem;height: 3rem;"/>
</a>
{/if}
<a href="/#/" class="d-flex justify-content-center align-items-center"
on:click|preventDefault={()=>showHostInfo=true}>
<span class="d-none d-md-block">
<span class:d-none={loggedInUsername} class:d-md-block={loggedInUsername}>
<Fa icon={faHouseUser} color="#123" size="2x" style="width: 3rem;height: 3rem;"/>
</span>
<span class="text-black ps-2 fs-2 fw-light">
Expand Down Expand Up @@ -98,6 +100,8 @@
header .items-right {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: end;
}
main {
Expand Down

0 comments on commit e3ca240

Please sign in to comment.