fix(branding): constrain sidebar logo to prevent overflow

Replace max-w-none with max-w-full so the logo respects the sidebar
container width instead of overflowing it.
This commit is contained in:
rosslh 2026-02-16 22:04:43 -08:00
parent 089374d720
commit ad7493b3d2

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-none dark:hidden" />
<img src="https://mapledeploy.ca/api/logo/lockup?height=40&dark=true" alt="MapleDeploy" class="hidden h-6 w-auto max-w-none dark:block" />
<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" />
</a>
<span class="text-xs opacity-75 dark:text-neutral-400">Powered by Coolify</span>
</div>