Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-2273, GH-2285, GH-2286: Optimizations to onboarding login & logout UX #689

Merged
merged 8 commits into from Mar 16, 2021

Increase setTimeout delay, modify vertical spacing

  • Loading branch information
leuryr committed Mar 11, 2021
commit 0865aacba85ce277c4ec6c826fa8d0e56ecd68cd
@@ -37,7 +37,7 @@ const WelcomeView = (props) => {

useEffect(() => {
actions.getUser();
const timer = setTimeout(() => setGetUserResolved(true), 500);
const timer = setTimeout(() => setGetUserResolved(true), 1000);

return () => {
clearTimeout(timer);
@@ -51,7 +51,7 @@ $color-create-account-form-error-red: #e74055;
}

.Step1_CreateAccountView__alreadySignedIn {
margin-top: 245px;
margin-top: 146px;
display: flex;
flex-direction: column;
justify-content: center;
@@ -60,13 +60,14 @@ $color-create-account-form-error-red: #e74055;
.Step1_CreateAccountView__email {
font-size: 24px;
color: $ghosty-blue;
margin-top: 16px;
}
.Step1_CreateAccountView__ctaButtonContainer {
display: flex;
justify-content: center;
margin-top: 32px;

.Step1_CreateAccountView__ctaButton {
margin: 48px auto 0 auto;
min-height: 44px;
width: 162px;
padding: 7.7px 14px;
ProTip! Use n and p to navigate between commits in a pull request.