Skip to content

Commit

Permalink
fix ergo logo
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Jan 29, 2024
1 parent ab0d3a2 commit b86cadc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
3 changes: 2 additions & 1 deletion packages/ui/src/components/AppHeader.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script setup lang="ts">
import { useColorMode } from "@vueuse/core";
import { Moon, Sun } from "lucide-vue-next";
import ErgoLogo from "@/assets/ergo.svg";
import { Button } from "@/components/ui/button";
import { CardHeader, CardTitle } from "@/components/ui/card";
import { useToast } from "@/components/ui/toast/use-toast";
Expand Down Expand Up @@ -28,7 +29,7 @@ function toggleTheme() {

<template>
<CardHeader class="flex-row items-center gap-2 space-y-0">
<img src="../assets/ergo.svg" alt="Nautilus Wallet" class="w-10" />
<ErgoLogo class="h-10 w-10" />
<CardTitle class="flex-grow cursor-default tracking-normal">Ergo Wallet</CardTitle>

<div class="flex gap-2">
Expand Down
14 changes: 0 additions & 14 deletions packages/ui/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { defineConfig } from "vite";
import svgLoader from "vite-svg-loader";

// https://vitejs.dev/config/

export default defineConfig(({ mode }) => {
return {
plugins: [vue(), svgLoader()],
Expand All @@ -19,16 +18,3 @@ export default defineConfig(({ mode }) => {
}
};
});

// export default defineConfig({
// plugins: [vue(), svgLoader()],
// base: import.meta.env.PROD ? "./" : "",
// resolve: {
// alias: {
// "@": path.resolve(__dirname, "./src")
// }
// },
// server: {
// port: 8000
// }
// });

0 comments on commit b86cadc

Please sign in to comment.