fix: use full-color brand PNGs for login dialog and sidebar
All checks were successful
CI / build (push) Successful in 1m32s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 1m44s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 40s

The SVG uses fill=currentColor (inherits text color). Switch to the
full-color PNG brand icons: 192px for login dialog, 48px for sidebar.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-06 22:10:48 +02:00
parent 0761d0dbee
commit 6ef66a14ec
5 changed files with 3 additions and 2 deletions

View File

@@ -95,6 +95,7 @@ public class SecurityConfig {
"/index.html", "/index.html",
"/config.js", "/config.js",
"/favicon-*.png", "/favicon-*.png",
"/cameleer3-logo-*.png",
"/camel-logo.svg", "/camel-logo.svg",
"/assets/**" "/assets/**"
).permitAll() ).permitAll()

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -131,7 +131,7 @@ export function LoginPage() {
<Card className={styles.card}> <Card className={styles.card}>
<div className={styles.loginForm}> <div className={styles.loginForm}>
<div className={styles.logo}> <div className={styles.logo}>
<img src={`${config.basePath}camel-logo.svg`} alt="" className={styles.logoImg} /> <img src={`${config.basePath}cameleer3-logo-192.png`} alt="" className={styles.logoImg} />
cameleer3 cameleer3
</div> </div>
<p className={styles.subtitle}>{subtitle}</p> <p className={styles.subtitle}>{subtitle}</p>

View File

@@ -625,7 +625,7 @@ function LayoutContent() {
// --- Render ------------------------------------------------------- // --- Render -------------------------------------------------------
const camelLogo = ( const camelLogo = (
<img src={`${config.basePath}camel-logo.svg`} alt="" style={{ width: 28, height: 24 }} /> <img src={`${config.basePath}cameleer3-logo-48.png`} alt="" style={{ width: 28, height: 28 }} />
); );
const sidebarElement = ( const sidebarElement = (