Sticky'd navbar
Some checks failed
Continuous Deployment / Update Deployment (push) Failing after 1m11s

This commit is contained in:
2025-12-03 19:14:47 -05:00
parent f985e0234c
commit aedcbd9492

View File

@@ -22,6 +22,7 @@ const environment = import.meta.env.VITE_ENVIRONMENT;
<template> <template>
<div class="flex flex-col min-h-screen"> <div class="flex flex-col min-h-screen">
<div class="sticky top-0 bg-background z-50">
<Navbar class="flex"></Navbar> <Navbar class="flex"></Navbar>
<Alert v-if="environment == 'dev'" class="m-2 mx-auto w-5xl" variant="info"> <Alert v-if="environment == 'dev'" class="m-2 mx-auto w-5xl" variant="info">
<AlertDescription class="flex flex-row items-center text-nowrap gap-5 mx-auto"> <AlertDescription class="flex flex-row items-center text-nowrap gap-5 mx-auto">
@@ -34,6 +35,7 @@ const environment = import.meta.env.VITE_ENVIRONMENT;
<Button variant="secondary">End LOA</Button> <Button variant="secondary">End LOA</Button>
</AlertDescription> </AlertDescription>
</Alert> </Alert>
</div>
<RouterView class="flex-1 min-h-0"></RouterView> <RouterView class="flex-1 min-h-0"></RouterView>
</div> </div>