Skip to content

Commit

Permalink
Add OME Logo to nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Oct 14, 2024
1 parent 106f6ab commit 2522eef
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
43 changes: 43 additions & 0 deletions public/ome-main-nav.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion src/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@
import AboutDialog from "./Dialogs/AboutDialog.svelte";
const { open } = getContext("simple-modal");
const showAbout = () => open(AboutDialog);
import omelogo from "/ome-main-nav.svg"
</script>

<h1>OME-NGFF Validator</h1>

<div class="navLeft">

<img style="height: 30px" alt="OME Logo" src="{omelogo}"/>

<h1>NGFF Validator</h1>

</div>

<ul>
<li>
Expand All @@ -14,6 +22,13 @@
</ul>

<style>
.navLeft {
display: flex;
flex-direction: row;
align-items: center;
margin-left: 15px;
}
h1 {
color: white;
font-weight: 300;
Expand Down

0 comments on commit 2522eef

Please sign in to comment.