More updates

This commit is contained in:
2026-06-25 18:58:55 -07:00
parent 4ad239308c
commit 8fe16ef65c
2 changed files with 23 additions and 5 deletions
+6 -5
View File
@@ -4,11 +4,11 @@
to="/dashboard" to="/dashboard"
class="d-flex" class="d-flex"
> >
<img <!-- <img
class="ml-0 mt-1" class="ml-0 mt-1"
style="height: 36px" style="height: 36px"
:src="AppLogo" :src="AppLogo"
/> /> -->
<div v-if="sidebarMini || mdAndDown"></div> <div v-if="sidebarMini || mdAndDown"></div>
<div <div
v-else v-else
@@ -20,7 +20,7 @@
color="primary" color="primary"
style="font-size: 26px" style="font-size: 26px"
> >
CALEBBURKEDEV {{ APPLICATION_NAME.toUpperCase() }}
</h1> </h1>
</div> </div>
</RouterLink> </RouterLink>
@@ -28,12 +28,13 @@
</template> </template>
<script setup> <script setup>
import AppLogo from "@/assets/app_logo_small.png"
import { useDisplay } from "vuetify" import { useDisplay } from "vuetify"
import useInterface from "@/use/use-interface" import useInterface from "@/use/use-interface"
import { watch } from "vue" import { watch } from "vue"
// import AppLogo from "@/assets/app_logo_small.png"
import { APPLICATION_NAME } from "@/config"
const { sidebarMini, setSidebarMini } = useInterface() const { sidebarMini, setSidebarMini } = useInterface()
const { mdAndDown } = useDisplay() const { mdAndDown } = useDisplay()
@@ -11,6 +11,23 @@
<v-spacer /> <v-spacer />
<!-- TODO Add notifications -->
<!-- <v-btn
icon
class="mr-1"
>
<v-badge
color="error"
:content="3"
>
<v-icon
size="24"
color="white"
icon="mdi-bell"
/>
</v-badge>
</v-btn> -->
<ProfileMenu /> <ProfileMenu />
</v-app-bar> </v-app-bar>
</template> </template>