Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,28 @@
margin-top: 64px;
gap: 32px;

div {
display: flex;
flex-direction: column;
align-items: center;
.steps {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
height: 32px;
width: 32px;

border: 2px solid var(--blue-principal-000052);
border-radius: 50%;

p {
font-size: 1.125rem;
font-weight: 700;
}
}
}

h1 {
color: var(--blue-principal-000052);
margin-bottom: 16px;
Expand Down
7 changes: 5 additions & 2 deletions src/pages/seller-onboarding/components/hero-stepper/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const SellerOnboardingHeroStepper: React.FC = () => {
return (
<div className={Styles.seller_onboarding_hero_stepper}>
<section>
<Stepper activeStep={3} alternativeLabel>
{steps.map((label) => (
<Stepper activeStep={3}>
{steps.map((label, i) => (
<Step key={label}>
<StepLabel ></StepLabel>
</Step>
Expand All @@ -23,15 +23,18 @@ const SellerOnboardingHeroStepper: React.FC = () => {

<section className={Styles.stepper_content}>
<div>
{/* <p className={Styles.steps}>1</p> */}
<h1>Apply to shop and start earning today</h1>
<p>Sign up now and see why over 600,000 shoppers choose Instacart for flexible earnings.</p>
</div>
<div>
{/* <p className={Styles.steps}>2</p> */}
<h1>Apply to shop and start earning today</h1>
<p>Sign up now and see why over 600,000 shoppers choose Instacart for flexible earnings.</p>
</div>

<div>
{/* <p className={Styles.steps}>3</p> */}
<h1>Apply to shop and start earning today</h1>
<p>Sign up now and see why over 600,000 shoppers choose Instacart for flexible earnings.</p>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: grid;
grid-template-columns: 53.5% 41%;
gap: 0px 32px;
height: 480px;
min-height: 500px;

.hero_content {
display: flex;
Expand All @@ -14,7 +14,7 @@

h1 {
margin-top: 32px;
font-size: 4.5vw;
font-size: 2.8vw;
line-height: 1.2;
color: var(--blue-principal-000052);
}
Expand All @@ -29,7 +29,7 @@
background-image: url('../../../../../public/assets/hero/heroOnboarding.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
background-size: 80%;
object-fit: cover;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const {
</CustomButton>
</section>
<section className={Styles.hero_image}>

{/* Hero images */}
</section>
</div>

Expand Down
Loading
Loading