Skip to content

Commit

Permalink
fix: app bar logo
Browse files Browse the repository at this point in the history
  • Loading branch information
OCDkirby committed Nov 16, 2023
1 parent 6c4ff5e commit 3529282
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/TopBarMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ const menuOptions: MenuOption[] = [
<template>
<div class="bar-wrapper">
<n-button quaternary tag="a" href="https://rpcsx.github.io/rpcsx-site/">
<img alt="RPCSX logo" class="logo" :src="themex == null ? './assets/logo-light.png' : './assets/logo-dark.png'"
width="32" height="32" />
<img alt="RPCSX logo" class="logo" src="/assets/logo-dark.png" width="32" height="32" />
</n-button>
<n-menu v-model:value="activeKey" mode="horizontal" :options="menuOptions" />
<n-button circle @click="toggle" class="dark-mode-button">
Expand Down Expand Up @@ -125,4 +124,4 @@ export default defineComponent({
}
}
})
</script>
</script>

0 comments on commit 3529282

Please sign in to comment.