Skip to content

Commit

Permalink
Merge pull request #2296 from s-ff/rearrange-navbar-icons
Browse files Browse the repository at this point in the history
rearrange navbar icons
  • Loading branch information
mr-tz authored Aug 15, 2024
2 parents 3a21648 + 25e9e18 commit 19698b1
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 19698b1

Please sign in to comment.