fixed logo sizes

This commit is contained in:
Eric Gullickson
2025-07-22 11:02:53 -05:00
parent 196df07a24
commit 8489cd5db4
5 changed files with 6 additions and 2 deletions

BIN
IMG_9020.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 759 KiB

BIN
IMG_9021.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 947 KiB

BIN
IMG_9022.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@@ -21,7 +21,7 @@
<div class="d-flex motovaultpro-navbar"> <div class="d-flex motovaultpro-navbar">
<div class="me-2" style="cursor:pointer;" onclick="returnToGarage()"> <div class="me-2" style="cursor:pointer;" onclick="returnToGarage()">
<img src="@config.GetSmallLogoUrl()" class="motovaultpro-logo motovaultpro-tab" /> <img src="@config.GetSmallLogoUrl()" class="motovaultpro-logo motovaultpro-tab" />
<img src="@config.GetLogoUrl()" class="motovaultpro-logo motovaultpro-mobile-nav-show" /> <img src="@config.GetSmallLogoUrl()" class="motovaultpro-logo motovaultpro-mobile-nav-show" />
</div> </div>
<ul class="nav nav-tabs motovaultpro-tab flex-grow-1" id="homeTab" role="tablist"> <ul class="nav nav-tabs motovaultpro-tab flex-grow-1" id="homeTab" role="tablist">
<li class="nav-item" role="presentation"> <li class="nav-item" role="presentation">

View File

@@ -269,6 +269,7 @@ html {
.motovaultpro-navbar { .motovaultpro-navbar {
justify-content: space-between; justify-content: space-between;
align-items: center;
} }
.motovaultpro-navbar-button { .motovaultpro-navbar-button {
@@ -287,6 +288,7 @@ html {
height: 1.5em; height: 1.5em;
} }
.motovaultpro-mobile-nav { .motovaultpro-mobile-nav {
background-color: var(--bs-body-bg); background-color: var(--bs-body-bg);
height: 100vh; height: 100vh;
@@ -625,9 +627,11 @@ html[data-bs-theme="light"] .frosted {
min-height: 100vh; min-height: 100vh;
} }
.no-top-pad { .no-top-pad {
margin-top: calc(-48px - 2.5rem); margin-top: calc(-48px - 2.5rem);
} }
.sticky-top-nav { .sticky-top-nav {
top: calc(48px + 2.5rem); top: calc(48px + 2.5rem);
} }