reduced padding top on mobile onboarding (#4856)

pull/4772/head
Peer Richelsen 2022-10-05 19:46:20 +01:00 committed by GitHub
parent 50151403c4
commit f04cfef0af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ const OnboardingPage = (props: IOnboardingPageProps) => {
<link rel="icon" href="/favicon.ico" />
</Head>
<div className="mx-auto px-4 py-24">
<div className="mx-auto px-4 py-6 md:py-24">
<div className="relative">
<div className="sm:mx-auto sm:w-full sm:max-w-[600px]">
<div className="mx-auto sm:max-w-[520px]">
@ -129,7 +129,7 @@ const OnboardingPage = (props: IOnboardingPageProps) => {
event.preventDefault();
goToIndex(currentStepIndex + 1);
}}
className="mt-24 cursor-pointer px-4 py-2 font-sans text-sm font-medium">
className="mt-8 cursor-pointer px-4 py-2 font-sans text-sm font-medium">
{headers[currentStepIndex]?.skipText}
</Button>
</div>