fix: widen collapsed sidebar to 64px, prevent header flash on refresh

Collapsed width 56px→64px to stop clipping site picker badge and icons.
Return null while auth is loading on site pages to prevent brief flash
of the public floating header before the sidebar layout renders.
This commit is contained in:
Usman Baig
2026-03-18 16:51:01 +01:00
parent 5c8f334017
commit 6fcb6df295
2 changed files with 7 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ import {
const SIDEBAR_KEY = 'pulse_sidebar_collapsed'
const EXPANDED = 256
const COLLAPSED = 56
const COLLAPSED = 64
type IconWeight = 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone'