Skip to content

Commit

Permalink
refactor: 로딩 애니메이션을 자연스럽게 수정 (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
D0Dam committed Jul 29, 2023
1 parent 7a3cf54 commit 389520b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/@common/LoadingDots/LoadingDots.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default LoadingDots;

const StyledLoadingDots = styled.div`
display: flex;
gap: 0 0.6rem;
gap: 0 1.4rem;
& > div:nth-child(2) {
animation-delay: 0.14s;
Expand All @@ -30,13 +30,13 @@ const pulseAnimation = keyframes`
transform: scale(0);
}
90%, 100% {
transform: scale(1);
transform: scale(10);
}
`;

const StyledLoadingDot = styled.div`
width: 12px;
height: 12px;
width: 1.2px;
height: 1.2px;
border-radius: 50%;
background-color: var(--black);
Expand Down

0 comments on commit 389520b

Please sign in to comment.