Merge pull request 'fix: Size brand-logo as fixed square for 1:1 logo aspect ratio' (#19) from feat/header-logo-and-title-gradient into master

Reviewed-on: #19
This commit was merged in pull request #19.
This commit is contained in:
2026-03-09 19:48:36 -05:00

View File

@@ -36,12 +36,15 @@
color: var(--primary-light); color: var(--primary-light);
} }
/* Custom logo image sizing */ /* Square logo: fixed equal width/height to match a 1:1 image */
.brand-logo { .brand-logo {
width: 2.5rem;
height: 2.5rem; height: 2.5rem;
width: auto;
object-fit: contain; object-fit: contain;
object-position: center;
display: block; display: block;
border-radius: 4px;
flex-shrink: 0;
} }
.brand-icon { .brand-icon {
@@ -108,7 +111,9 @@
font-size: 1.25rem; font-size: 1.25rem;
} }
/* Scale square logo down on mobile */
.brand-logo { .brand-logo {
width: 2rem;
height: 2rem; height: 2rem;
} }