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:
parent
b6b170b608
commit
33f72df0be
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue