From 407d53f4b05dd5390da9a457afa89c3768e824c1 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 19 Oct 2024 04:58:14 +0530 Subject: [PATCH] feat: padding --- src/components/molecules/BrowserNavBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/BrowserNavBar.tsx b/src/components/molecules/BrowserNavBar.tsx index 48773278..11f22e58 100644 --- a/src/components/molecules/BrowserNavBar.tsx +++ b/src/components/molecules/BrowserNavBar.tsx @@ -16,7 +16,7 @@ import { useGlobalInfoStore } from '../../context/globalInfo'; const StyledNavBar = styled.div<{ browserWidth: number }>` display: flex; - padding: 5px; + padding: 12px 0px; background-color: #f6f6f6; width: ${({ browserWidth }) => browserWidth}px; `;