diff --git a/src/__tests__/components/notificationdot.test.tsx b/src/__tests__/components/notificationdot.test.tsx index 2715df89d..9fd891948 100644 --- a/src/__tests__/components/notificationdot.test.tsx +++ b/src/__tests__/components/notificationdot.test.tsx @@ -15,7 +15,7 @@ it("renders correctly", () => { >
diff --git a/src/components/NotificationDot/NotificationDot.tsx b/src/components/NotificationDot/NotificationDot.tsx index a25622a86..36d775816 100644 --- a/src/components/NotificationDot/NotificationDot.tsx +++ b/src/components/NotificationDot/NotificationDot.tsx @@ -15,7 +15,7 @@ const Dot = styled.span` width: 10px; height: 10px; pointer-events: none; - border: 1px solid ${({ theme }) => theme.colors.invertedContrast}; + border: 2px solid ${({ theme }) => theme.colors.invertedContrast}; border-radius: 50%; background-color: ${({ theme }) => theme.colors.failure}; `;