Skip to content

Commit

Permalink
feat: Fix minor changes on Dashboard (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
juntaepark authored Aug 4, 2023
1 parent a961806 commit a6081fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import mixins from "@styles/mixins";

export const TvlChartWrapper = styled.div`
${mixins.flexbox("column", "flex-start", "flex-start")};
background-color: ${({ theme }) => theme.color.background02};
border: 1px solid ${({ theme }) => theme.color.border01};
background-color: ${({ theme }) => theme.color.background06};
border: 1px solid ${({ theme }) => theme.color.border02};
border-radius: 8px;
padding: 24px;
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import mixins from "@styles/mixins";

export const VolumeChartWrapper = styled.div`
${mixins.flexbox("column", "flex-start", "flex-start")};
background-color: ${({ theme }) => theme.color.background02};
border: 1px solid ${({ theme }) => theme.color.border01};
background-color: ${({ theme }) => theme.color.background06};
border: 1px solid ${({ theme }) => theme.color.border02};
border-radius: 8px;
padding: 24px;
`;
Expand Down

0 comments on commit a6081fc

Please sign in to comment.