Temp Logo Added

This commit is contained in:
Louis Whittington 2026-03-31 11:58:53 -05:00
parent 6d27eb62f8
commit 36ce29f7bb
8 changed files with 68 additions and 1 deletions

View File

@ -64,6 +64,50 @@ main {
min-width: 0; min-width: 0;
} }
.app-header-logo-link {
display: inline-flex;
align-items: center;
justify-content: center;
max-width: min(66vw, 240px);
border-radius: 0.7rem;
padding: 0.22rem 0.45rem;
text-decoration: none;
transition:
background-color var(--fh-duration-fast) var(--fh-ease-out),
border-color var(--fh-duration-fast) var(--fh-ease-out),
box-shadow var(--fh-duration-med) var(--fh-ease-out);
}
.app-header-logo {
display: block;
width: 100%;
height: auto;
max-height: 62px;
}
body.header-tone-dark .app-header-logo-link {
background: rgba(255, 255, 255, 0.94);
border: 1px solid rgba(255, 255, 255, 0.9);
box-shadow:
0 2px 8px rgba(0, 0, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
body.header-tone-light .app-header-logo-link {
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(31, 42, 55, 0.28);
box-shadow:
0 2px 8px rgba(15, 23, 42, 0.14),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
@media (hover: hover) and (pointer: fine) {
.app-header-logo-link:hover,
.app-header-logo-link:focus-visible {
box-shadow: var(--fh-shadow-tab-md);
}
}
.app-header-actions { .app-header-actions {
grid-column: 2; grid-column: 2;
grid-row: 1; grid-row: 1;
@ -466,6 +510,15 @@ body.header-tone-light .app-header .tab.active {
font-size: 1.3rem; font-size: 1.3rem;
} }
.app-header-logo-link {
max-width: min(72vw, 210px);
padding: 0.18rem 0.35rem;
}
.app-header-logo {
max-height: 52px;
}
.user-balance { .user-balance {
max-width: 58vw; max-width: 58vw;
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

View File

@ -29,7 +29,17 @@
} }
?> ?>
<div class="app-header-top"> <div class="app-header-top">
<h1 class="h3 mb-0 app-header-brand">Family Hub</h1> <h1 class="h3 mb-0 app-header-brand">
<a href="index.php" class="app-header-logo-link" aria-label="Family Hub home">
<img
src="assets/logo/trans_480x480.svg"
alt="Family Hub"
class="app-header-logo"
width="240"
height="80"
>
</a>
</h1>
<div class="app-header-actions d-flex align-items-center gap-2 flex-wrap justify-content-end"> <div class="app-header-actions d-flex align-items-center gap-2 flex-wrap justify-content-end">
<?php if (count($people) === 0): ?> <?php if (count($people) === 0): ?>
<span class="small opacity-75 text-end">Add people in Family settings.</span> <span class="small opacity-75 text-end">Add people in Family settings.</span>