From 12e540b61bd2029a3fca4b2c8ddae7d07b8c1578 Mon Sep 17 00:00:00 2001 From: Christopher Hight Date: Mon, 24 Aug 2026 08:58:31 -0700 Subject: [PATCH] Fix adjustment to VDAP logo and emoji --- client/src/components/layout/Sidebar.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/src/components/layout/Sidebar.jsx b/client/src/components/layout/Sidebar.jsx index 68d2dbf..81682b2 100644 --- a/client/src/components/layout/Sidebar.jsx +++ b/client/src/components/layout/Sidebar.jsx @@ -43,9 +43,10 @@ export default function Sidebar() { fontWeight="bold" height="auto" // Prevents the large text from squashing vertically overflow="hidden" + width="100%" px={0} - justifyContent={isOpen ? "center" : "center"} // Center the 'V' when collapsed - ml={isOpen ? 3 : 0} // Align with other buttons when open + justifyContent={isOpen ? "flex-start" : "center"} // Center the 'V' when collapsed + ml={isOpen ? 2 : -1} // Align with other buttons when open textStyle={isOpen ? "4xl" : "3xl"} // Scale down slightly when closed > {isOpen ? "🌋 VDAP" : "🌋"}