Skip to content

Commit

Permalink
update wallet block
Browse files Browse the repository at this point in the history
  • Loading branch information
NickJ202 committed Jan 11, 2024
1 parent fa05e51 commit dc3431c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/views/Upload/UploadAssets/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const EIcon = styled.div`
svg {
height: 75px;
width: 75px;
fill: ${(props) => props.theme.colors.icon.alt3.fill};
fill: ${(props) => props.theme.colors.icon.primary.fill};
}
`;

Expand Down
16 changes: 13 additions & 3 deletions src/wallet/WalletBlock/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,21 @@ export const Wrapper = styled.div`
`;

export const Icon = styled.div`
margin: 0 0 10px 0;
height: 125px;
width: 125px;
display: flex;
justify-content: center;
align-items: center;
background: ${(props) => props.theme.colors.container.alt4.background};
border: 1px solid ${(props) => props.theme.colors.border.primary};
box-shadow: 0 5px 15px 0 ${(props) => props.theme.colors.shadow.primary};
border-radius: 50%;
margin: 0 0 25px 0;
svg {
height: 90px;
width: 90px;
height: 75px;
width: 75px;
fill: ${(props) => props.theme.colors.icon.primary.fill};
margin: 3.5px 0 0 0;
}
`;

Expand Down

0 comments on commit dc3431c

Please sign in to comment.