fix navbar style divider color

This commit is contained in:
Abhinav 2022-06-10 19:28:35 +05:30
parent 8adb6757c8
commit ff54566a1c
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ export const CollectionBarWrapper = styled(PaddedContainer)`
height: 86px;
width: 100%;
margin: 10px auto;
border-bottom: 1px solid ${({ theme }) => theme.palette.grey.A200};
border-bottom: 1px solid ${({ theme }) => theme.palette.divider};
`;
export const CollectionSectionWrapper = styled(PaddedContainer)`

View file

@ -3,12 +3,12 @@ import styled from 'styled-components';
const NavbarBase = styled(FlexWrapper)`
padding: 0 20px;
background-color: #111;
min-height: 64px;
position: sticky;
top: 0;
left: 0;
z-index: 1;
border-bottom: 1px solid ${({ theme }) => theme.palette.divider};
`;
export default NavbarBase;