fix(branding): preserve sidebar logo aspect ratio when constrained
All checks were successful
Build MapleDeploy Coolify Image / build (push) Successful in 38s

This commit is contained in:
rosslh 2026-02-16 22:19:56 -08:00
parent e49feb3e0b
commit ca24c0cc92
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
return [
// MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default
'coolify' => [
'version' => '4.0.0-beta.463.3',
'version' => '4.0.0-beta.463.4',
'helper_version' => '1.0.12',
'realtime_version' => '1.0.10',
'self_hosted' => env('SELF_HOSTED', true),

View file

@ -81,8 +81,8 @@
{{-- MapleDeploy branding --}}
<div class="flex flex-col w-full">
<a href="/" {{ wireNavigate() }} class="hover:opacity-80 transition-opacity">
<img src="https://mapledeploy.ca/api/logo/lockup?height=40" alt="MapleDeploy" class="h-6 w-auto max-w-full dark:hidden" />
<img src="https://mapledeploy.ca/api/logo/lockup?height=40&dark=true" alt="MapleDeploy" class="hidden h-6 w-auto max-w-full dark:block" />
<img src="https://mapledeploy.ca/api/logo/lockup?height=40" alt="MapleDeploy" class="max-h-6 w-auto max-w-full dark:hidden" />
<img src="https://mapledeploy.ca/api/logo/lockup?height=40&dark=true" alt="MapleDeploy" class="hidden max-h-6 w-auto max-w-full dark:block" />
</a>
<span class="text-xs opacity-75 dark:text-neutral-400">Powered by Coolify</span>
</div>