Skip to content

Commit

Permalink
Set logo colors to red and green
Browse files Browse the repository at this point in the history
  • Loading branch information
asoong committed May 9, 2024
1 parent 42c5f80 commit 3ca4525
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/components/Notary/NotarizationTable.tsx
Expand Up @@ -879,7 +879,7 @@ const ButtonContainer = styled.div`
`;

const StyledUserX = styled(UserX)`
color: #FFF;
color: ${colors.connectionStatusRed};
width: 28px;
height: 28px;
`;
Expand All @@ -891,19 +891,19 @@ const StyledWifiOff = styled(WifiOff)`
`;

const StyledUserCheck = styled(UserCheck)`
color: #FFF;
color: ${colors.connectionStatusGreen};
width: 28px;
height: 28px;
`;

const StyledCheckCircle = styled(CheckCircle)`
color: #FFF;
color: ${colors.connectionStatusGreen};
width: 28px;
height: 28px;
`;

const StyledSlash = styled(Slash)`
color: #FFF;
color: ${colors.connectionStatusRed};
width: 28px;
height: 28px;
`;
Expand Down

0 comments on commit 3ca4525

Please sign in to comment.