reset nav logo size

This commit is contained in:
miloschwartz
2025-11-08 14:18:43 -08:00
parent f98b4baa73
commit 10f8298161
2 changed files with 5 additions and 5 deletions

View File

@@ -20,11 +20,11 @@ export function LayoutHeader({ showTopBar }: LayoutHeaderProps) {
const { isUnlocked } = useLicenseStatusContext(); const { isUnlocked } = useLicenseStatusContext();
const logoWidth = isUnlocked() const logoWidth = isUnlocked()
? env.branding.logo?.navbar?.width || 118 ? env.branding.logo?.navbar?.width || 98
: 118; : 98;
const logoHeight = isUnlocked() const logoHeight = isUnlocked()
? env.branding.logo?.navbar?.height || 29.5 ? env.branding.logo?.navbar?.height || 32
: 29.5; : 32;
useEffect(() => { useEffect(() => {
function getPath() { function getPath() {

View File

@@ -49,7 +49,7 @@ export function OrgSelector({ orgId, orgs, isCollapsed = false }: OrgSelectorPro
<Popover open={open} onOpenChange={setOpen}> <Popover open={open} onOpenChange={setOpen}>
<PopoverTrigger asChild> <PopoverTrigger asChild>
<Button <Button
variant="outline" variant="secondary"
size={isCollapsed ? "icon" : "lg"} size={isCollapsed ? "icon" : "lg"}
role="combobox" role="combobox"
aria-expanded={open} aria-expanded={open}