Fixed banner not having correct width

This commit is contained in:
thepaperpilot 2022-03-06 23:16:27 -06:00
parent 1ecab3716e
commit a7ff83dfd4

View file

@ -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;