Skip to content

Commit

Permalink
fix: detail view border changes (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
SarjuHansaliya committed Mar 7, 2023
1 parent 3893d70 commit 4bf4047
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Pools/DetailModal/DetailView/styleds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const MobileWrapper = styled(Box)`
`;

export const LeftSection = styled(Box)`
border-right: 2px solid ${({ theme }) => theme.text9};
border-right: 2px solid ${({ theme }) => theme.text6};
display: flex;
flex-direction: column;
`;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pools/DetailModal/Header/styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const HeaderRoot = styled(Box)`
align-items: center;
justify-content: space-between;
padding: 20px;
border-bottom: 1px solid ${({ theme }) => theme.text9};
border-bottom: 1px solid ${({ theme }) => theme.text6};
${({ theme }) => theme.mediaWidth.upToSmall`
border-bottom: none;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pools/PoolCard/styleds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ContentWrapper = styled.div`

export const Divider = styled(Box)`
height: 1px;
background-color: ${({ theme }) => theme.bg7};
background-color: ${({ theme }) => theme.text6};
margin: 10px 0px 10px 0px;
width: 100%;
`;
Expand Down

0 comments on commit 4bf4047

Please sign in to comment.