Skip to content

Commit

Permalink
Use light-mode logo for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Oct 16, 2024
1 parent 7761922 commit be39ae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import "@picocss/pico/css/pico.jade.min.css";
import logoDark from "../assets/logo_dark.svg?url";
import logo from "../assets/logo_light.svg?url";
import init, { MapModel } from "backend";
import type { Map } from "maplibre-gl";
import { onMount } from "svelte";
Expand Down Expand Up @@ -119,7 +119,7 @@
<Layout>
<div slot="top" style="display: flex">
<button class="outline" on:click={() => ($showAbout = true)}>
<img src={logoDark} style="height: 6vh;" alt="A/B Street logo" />
<img src={logo} style="height: 6vh;" alt="A/B Street logo" />
</button>
<span bind:this={topDiv} style="margin-left: 4px; width: 100%" />
</div>
Expand Down

0 comments on commit be39ae4

Please sign in to comment.