fixed logo

This commit is contained in:
2026-03-01 03:43:26 -05:00
parent dd2a436f0e
commit 635081612e
4 changed files with 28 additions and 8 deletions

View File

@@ -131,12 +131,15 @@ body {
}
.login-logo {
width: 80px;
height: 80px;
margin: 0 auto 1rem;
border-radius: 16px;
box-shadow: var(--shadow);
width: 120px;
height: 120px;
max-width: 40vw;
margin: 0 auto 1.5rem;
border-radius: 20px;
box-shadow: var(--shadow-lg);
object-fit: contain;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
.login-header h1 {
@@ -369,6 +372,8 @@ body {
object-fit: contain;
flex-shrink: 0;
box-shadow: 0 2px 8px rgba(254, 128, 25, 0.3);
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
.sidebar.collapsed .sidebar-logo {
@@ -376,6 +381,19 @@ body {
height: 40px;
}
.logo-fallback {
color: var(--orange);
font-size: 1.5rem;
min-width: 24px;
opacity: 0;
transition: opacity 0.2s;
}
.sidebar-logo[src=""] + .logo-fallback,
.sidebar-logo:not([src]) + .logo-fallback {
opacity: 1;
}
/* Legacy icon fallback removed - logo replaces */
.sidebar-menu {