Merge branch 'refactor/favs' into 'master'

feat: admin display

See merge request gk1623/drp-48!34

Co-authored-by: Barf-Vader <47476490+Barf-Vader@users.noreply.github.com>
This commit is contained in:
Ling, Alex
2025-06-17 12:08:20 +00:00

View File

@@ -256,6 +256,9 @@
<Button href="/auth" type="link">Login / Signup</Button> <Button href="/auth" type="link">Login / Signup</Button>
{/if} {/if}
</footer> </footer>
{#if adminMode}
<div class="adminMode">You are in admin mode</div>
{/if}
<style> <style>
main { main {
@@ -326,4 +329,24 @@
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
} }
.adminMode {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
position: sticky;
left: 0;
gap: 0.5rem;
padding: 0.75rem;
font-size: 1rem;
background-color: #182125;
bottom: 0;
border-radius: 0.5rem;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
color: #eaffeb;
border: 2px solid #eaffeb;
z-index: 1000;
}
</style> </style>