style(branding): add header logo gap and use stone-900 background
Add 4px gap between logo and header elements with flex-shrink support. Change base background from near-black (#0c0a09) to stone-900 (#1c1917) to match the marketing site's darkest dark-mode color.
This commit is contained in:
parent
32856d72d6
commit
f98b8b5655
3 changed files with 4 additions and 4 deletions
|
|
@ -3,7 +3,7 @@
|
|||
return [
|
||||
// MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default
|
||||
'coolify' => [
|
||||
'version' => '4.0.0-beta.463.4',
|
||||
'version' => '4.0.0-beta.463.5',
|
||||
'helper_version' => '1.0.12',
|
||||
'realtime_version' => '1.0.10',
|
||||
'self_hosted' => env('SELF_HOSTED', true),
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ @theme {
|
|||
--font-sans: Inter, sans-serif;
|
||||
--font-display: 'Overlock', sans-serif;
|
||||
|
||||
--color-base: #0c0a09;
|
||||
--color-base: #1c1917;
|
||||
--color-warning: #fcd452;
|
||||
--color-warning-50: #fefce8;
|
||||
--color-warning-100: #fef9c3;
|
||||
|
|
|
|||
|
|
@ -77,9 +77,9 @@
|
|||
}
|
||||
}
|
||||
}">
|
||||
<div class="flex lg:pt-6 pt-4 pb-4 pl-2">
|
||||
<div class="flex lg:pt-6 pt-4 pb-4 pl-2 gap-1">
|
||||
{{-- MapleDeploy branding --}}
|
||||
<div class="flex flex-col w-full">
|
||||
<div class="flex flex-col min-w-0 flex-1">
|
||||
<a href="/" {{ wireNavigate() }} class="hover:opacity-80 transition-opacity">
|
||||
<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" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue