Files
breadcrumb-the-shire/web/css/components/app-brand.css

35 lines
604 B
CSS
Raw Normal View History

@layer components {
/* Branding — tenant logo display in sidebar and login. */
2026-02-04 23:31:53 +01:00
.brand {
display: flex;
align-items: center;
gap: 10px;
}
img.brand-logo {
width: 30px;
height: 30px;
object-fit: contain;
flex-shrink: 0;
}
.brand-name {
line-height: var(--leading-none);
font-weight: var(--font-bold);
2026-02-04 23:31:53 +01:00
color: var(--app-contrast);
}
.brand-info {
line-height: var(--leading-none);
2026-02-04 23:31:53 +01:00
}
.brand-slogan {
font-size: 0.85em; /* em-relative sizing — intentional, scales with parent */
2026-02-04 23:31:53 +01:00
color: var(--app-muted-color);
}
.badge:empty {
padding: 0;
}
}