From 7d9f22fa59476d1548eb038d7d50fb89b398cb89 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 31 Mar 2022 12:05:24 +0100 Subject: [PATCH] Navigation: add border in collapsed state (#47122) --- public/app/core/components/NavBar/Next/NavBarNext.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/core/components/NavBar/Next/NavBarNext.tsx b/public/app/core/components/NavBar/Next/NavBarNext.tsx index c1526a91a7d..504c6b727ab 100644 --- a/public/app/core/components/NavBar/Next/NavBarNext.tsx +++ b/public/app/core/components/NavBar/Next/NavBarNext.tsx @@ -149,11 +149,13 @@ const getStyles = (theme: GrafanaTheme2) => ({ padding: `${theme.spacing(1)} 0`, position: 'relative', width: theme.spacing(7), + borderRight: `1px solid ${theme.components.panel.borderColor}`, [theme.breakpoints.down('md')]: { position: 'fixed', paddingTop: '0px', backgroundColor: 'inherit', + borderRight: 0, }, '.sidemenu-hidden &': {