Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
refactor: Adjust border on dot (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
hachiojidev authored Mar 9, 2021
1 parent 2069e75 commit 278aa12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/components/notificationdot.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ it("renders correctly", () => {
>
<div />
<span
class="sc-gsTCUz cfVzjW"
class="sc-gsTCUz ewuwAp"
/>
</span>
</DocumentFragment>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotificationDot/NotificationDot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Dot = styled.span<DotProps>`
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};
`;
Expand Down

0 comments on commit 278aa12

Please sign in to comment.