Skip to content

Commit

Permalink
rearrange navbar icons
Browse files Browse the repository at this point in the history
moves FLARE logo to the right left side, and make a link to /
  • Loading branch information
fariss committed Aug 15, 2024
1 parent 3a21648 commit 25e9e18
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web/explorer/src/components/NavBar.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<script setup>
import Menubar from "primevue/menubar";
import { RouterLink } from "vue-router";
</script>

<template>
<Menubar class="p-1">
<template #start>
<RouterLink to="/">
<img src="@/assets/images/icon.png" alt="Logo" class="w-2rem" />
</RouterLink>
</template>
<template #end>
<div class="flex align-items-center gap-3">
<a
Expand All @@ -18,7 +24,6 @@ import Menubar from "primevue/menubar";
<a v-ripple href="https://github.com/mandiant/capa" class="flex justify-content-center w-2rem">
<i class="pi pi-github text-2xl"></i>
</a>
<img src="@/assets/images/icon.png" alt="Logo" class="w-2rem" />
</div>
</template>
</Menubar>
Expand Down

0 comments on commit 25e9e18

Please sign in to comment.