fix: sidebar polish — logo, scrollbar, utility bar height, icon flash

- Fix stretched logo with object-contain
- Remove border below logo
- Add overflow-hidden to prevent scrollbar flash during transition
- Match utility bar height to old header (py-3.5)
- Remove transition-colors from active nav items to prevent white flash
This commit is contained in:
Usman Baig
2026-03-18 16:04:50 +01:00
parent 1d25368292
commit d00d2e5592
2 changed files with 6 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ export default function UtilityBar() {
}
return (
<div className="shrink-0 flex items-center justify-between border-b border-neutral-200 dark:border-neutral-800 bg-white dark:bg-neutral-900 px-4 sm:px-6 py-2">
<div className="shrink-0 flex items-center justify-between border-b border-neutral-200 dark:border-neutral-800 bg-white dark:bg-neutral-900 px-4 sm:px-8 py-3.5">
{/* Left: mobile sidebar toggle */}
<button
onClick={openMobile}