Skip to content

Commit

Permalink
Logo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed May 20, 2024
1 parent 862d06e commit ba0ab7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
File renamed without changes
3 changes: 2 additions & 1 deletion src/web/components/config-editor/config-editor.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script setup lang="ts">
import 'bootstrap/dist/css/bootstrap.min.css';
const logo = new URL('./assets/logo.png', import.meta.url).href
import { provide, ref } from 'vue';
import { useSwitch } from "@/web/hooks/use-switch";
Expand Down Expand Up @@ -37,7 +38,7 @@ provide<() => boolean>(PROVIDED_TOGGLE_SUMMARY, () => toggleRightBar(rightBarMod
<navbar :on-burger-click="leftBarVisible.on">
<template #title>
MolecuLarva
<img src="/molecular-ts/logo.png" alt="MolecuLarva" style="height: 30px; margin-left: 10px; margin-right: -10px">
<img :src="logo" alt="MolecuLarva" style="height: 30px; margin-left: 10px; margin-right: -10px">
</template>
<template #body>
<sidebar :visible="leftBarVisible" position="left" style="overflow: hidden; resize: horizontal;">
Expand Down

0 comments on commit ba0ab7a

Please sign in to comment.