web: logo updates
Local Docker Build (Dev) / build-dev (push) Successful in 4s

This commit is contained in:
2025-10-22 14:40:38 -04:00
parent 9397f115e3
commit cbe2fadab6
+9 -3
View File
@@ -53,14 +53,20 @@ body {
.header-logo { .header-logo {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: flex-start; /* Align to left instead of center */
gap: 1rem; gap: 1rem;
padding: 0.5rem 0; /* Add some vertical padding */
} }
.header-logo .logo { .header-logo .logo {
height: 60px; height: 80px;
width: auto; width: auto;
/* filter: brightness(0) invert(1); */ /* Make logo white - temporarily disabled for testing */ object-fit: contain;
object-position: center;
/* Remove white background and make it fit better */
background: transparent;
/* Optional: slight drop shadow for visibility */
filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
} }
.header-text { .header-text {