Skip to content

Commit 0027484

Browse files
committed
Improve login modal spinner
1 parent 889a5ce commit 0027484

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/modules/login-modal/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ const CtaButton = styled(Button)`
4949
margin: 20px;
5050
width: calc(100% - 40px);
5151
box-sizing: border-box;
52+
min-height: 58px;
5253
`;
5354

5455
const CloseDialogButton = styled.button`
@@ -159,12 +160,12 @@ const spin = keyframes`
159160

160161
const Spinner = styled.div`
161162
border: 4px solid rgba(0, 0, 0, 0.1);
162-
border-top: 4px solid #007bff;
163+
border-top: 4px solid var(--text-always-white);
163164
border-radius: 50%;
164165
width: 24px;
165166
height: 24px;
166167
animation: ${spin} 1s linear infinite;
167-
margin: 10px 0;
168+
margin: -4px 0;
168169
`;
169170

170171
const ErrorMessage = styled.div`

0 commit comments

Comments
 (0)