diff --git a/src/components/Nav.vue b/src/components/Nav.vue
index ef50c8f..b3678d4 100644
--- a/src/components/Nav.vue
+++ b/src/components/Nav.vue
@@ -1,6 +1,6 @@
 <template>
     <div class="nav" v-if="useHeader" v-bind="$attrs">
-        <img v-if="banner" :src="banner" height="100%" :alt="title" />
+        <img v-if="banner" :src="banner" class="banner" :alt="title" />
         <div v-else class="title">{{ title }}</div>
         <div @click="changelog?.open()" class="version-container">
             <Tooltip display="Changelog" bottom class="version"
@@ -141,6 +141,11 @@ function openDiscord() {
     flex-shrink: 0;
 }
 
+.nav > .banner {
+    height: 100%;
+    width: unset;
+}
+
 .overlay-nav {
     position: absolute;
     top: 10px;