fix(branding): preserve sidebar logo aspect ratio, bump to 463.2
Add max-w-none to logo images to prevent Tailwind base styles from constraining the image width within the narrow sidebar flex container.
This commit is contained in:
parent
d95d2a6c0c
commit
b6b170b608
2 changed files with 3 additions and 3 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
return [
|
return [
|
||||||
// MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default
|
// MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default
|
||||||
'coolify' => [
|
'coolify' => [
|
||||||
'version' => '4.0.0-beta.463.1',
|
'version' => '4.0.0-beta.463.2',
|
||||||
'helper_version' => '1.0.12',
|
'helper_version' => '1.0.12',
|
||||||
'realtime_version' => '1.0.10',
|
'realtime_version' => '1.0.10',
|
||||||
'self_hosted' => env('SELF_HOSTED', true),
|
'self_hosted' => env('SELF_HOSTED', true),
|
||||||
|
|
|
||||||
|
|
@ -81,8 +81,8 @@
|
||||||
{{-- MapleDeploy branding --}}
|
{{-- MapleDeploy branding --}}
|
||||||
<div class="flex flex-col w-full">
|
<div class="flex flex-col w-full">
|
||||||
<a href="/" {{ wireNavigate() }} class="hover:opacity-80 transition-opacity">
|
<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 dark:hidden" />
|
<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 dark:block" />
|
<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" />
|
||||||
</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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue