feat(branding): apply MapleDeploy mark to collapsed sidebar

Upstream added a collapsible sidebar that shows /coolify-logo.svg when
collapsed. Swap it for the MapleDeploy mark so the brand stays consistent
in both states.
This commit is contained in:
rosslh 2026-05-24 11:59:46 -04:00
parent f9649fd8f4
commit c8bacd9118

View file

@ -111,12 +111,13 @@
</a> </a>
<span class="text-xs opacity-75 dark:text-neutral-400">Powered by Coolify</span> <span class="text-xs opacity-75 dark:text-neutral-400">Powered by Coolify</span>
</div> </div>
{{-- MapleDeploy branding: collapsed-sidebar mark --}}
<div class="hidden flex-col items-center w-full gap-1" <div class="hidden flex-col items-center w-full gap-1"
:class="collapsed && 'lg:flex'"> :class="collapsed && 'lg:flex'">
<a href="/" {{ wireNavigate() }} <a href="/" {{ wireNavigate() }}
class="hover:opacity-80 transition-opacity" class="hover:opacity-80 transition-opacity"
title="Coolify"> title="MapleDeploy">
<img src="/coolify-logo.svg" alt="Coolify" class="w-6 h-6" /> <img src="https://mapledeploy.ca/api/logo/mark?height=64" alt="MapleDeploy" class="w-6 h-6" />
</a> </a>
<x-version class="text-[10px]" /> <x-version class="text-[10px]" />
</div> </div>