Skip to content

Commit ec2d580

Browse files
committed
Remove liquid blue/cyan glow and glass morphism effects from notification components
1 parent 651354b commit ec2d580

3 files changed

Lines changed: 9 additions & 11 deletions

File tree

src/components/header/components/notificationsDropdown/NotificationsOverlay/NotificationsOverlay.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const NotificationsList = styled.div`
3030
}
3131
3232
&::-webkit-scrollbar-thumb {
33-
background-color: rgba(6, 182, 212, 0.6);
33+
background-color: rgba(255, 255, 255, 0.3);
3434
border-radius: 3px;
3535
}
3636
`;

src/components/header/components/notificationsDropdown/PaymentNotificationsOverlay/PaymentNotificationsOverlay.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ export const PaymentNotificationsOverlay: React.FC<PaymentNotificationsOverlayPr
7474
<span style={{
7575
fontSize: '0.7rem',
7676
padding: '2px 6px',
77-
background: 'rgba(6, 182, 212, 0.15)',
78-
color: 'rgba(6, 182, 212, 0.9)',
77+
background: 'rgba(255, 255, 255, 0.1)',
78+
color: 'rgba(255, 255, 255, 0.8)',
7979
borderRadius: '10px',
8080
textTransform: 'uppercase'
8181
}}>

src/components/header/components/notificationsDropdown/ReportNotificationsOverlay/ReportNotificationsOverlay.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,8 @@ export const ReportNotificationsOverlay: React.FC<ReportNotificationsOverlayProp
5858
<span style={{
5959
fontSize: '0.7rem',
6060
padding: '2px 6px',
61-
background: notification.report_type === 'impersonation' ?
62-
'rgba(6, 182, 212, 0.12)' : 'rgba(245, 158, 11, 0.12)',
63-
color: notification.report_type === 'impersonation' ?
64-
'rgba(6, 182, 212, 0.9)' : 'rgba(245, 158, 11, 0.85)',
61+
background: 'rgba(245, 158, 11, 0.12)',
62+
color: 'rgba(245, 158, 11, 0.85)',
6563
borderRadius: '10px',
6664
textTransform: 'uppercase'
6765
}}>
@@ -73,10 +71,8 @@ export const ReportNotificationsOverlay: React.FC<ReportNotificationsOverlayProp
7371
<span style={{
7472
fontSize: '0.7rem',
7573
padding: '2px 6px',
76-
background: notification.report_type === 'impersonation' ?
77-
'rgba(6, 182, 212, 0.12)' : 'rgba(245, 158, 11, 0.12)',
78-
color: notification.report_type === 'impersonation' ?
79-
'rgba(6, 182, 212, 0.9)' : 'rgba(245, 158, 11, 0.85)',
74+
background: 'rgba(255, 255, 255, 0.1)',
75+
color: 'rgba(255, 255, 255, 0.85)',
8076
borderRadius: '10px'
8177
}}>
8278
{notification.report_count}
@@ -176,3 +172,5 @@ export const ReportNotificationsOverlay: React.FC<ReportNotificationsOverlayProp
176172
</S.NoticesOverlayMenu>
177173
);
178174
};
175+
176+
export default ReportNotificationsOverlay;

0 commit comments

Comments
 (0)