candidate auth

This commit is contained in:
2023-04-04 19:07:19 +03:00
parent 615606d3e6
commit 4e61ea043d
12 changed files with 684 additions and 4 deletions

View File

@ -0,0 +1,20 @@
import React from 'react';
import './stepForCandidate.scss'
export const StepsForCandidate = ({step}) => {
return(
<div className='step'>
<div className='step__start'>
<span>2</span>
<p>шага для твоего входа в команду </p>
</div>
<div className='step__info'>
<p>{step}</p>
<span>из 2</span>
</div>
</div>
)
};
export default StepsForCandidate

View File

@ -0,0 +1,50 @@
.step {
position: absolute;
display: flex;
align-items: center;
justify-content: space-between;
top: -100px;
padding:0 55px 0 85px;
width: 100%;
&__start {
display: flex;
align-items: center;
span {
font-weight: 900;
font-size: 258px;
line-height: 32px;
color: #52B709;
}
p {
margin-left: 20px;
max-width: 230px;
font-weight: 500;
font-size: 22px;
line-height: 32px;
color: #000000;
}
}
&__info {
display: flex;
align-items: center;
p {
background: #DDEEC6;
border-radius: 44px;
padding: 8px 26px;
font-weight: 400;
font-size: 16px;
line-height: 32px;
}
span {
margin-left: 55px;
font-weight: 400;
font-size: 16px;
line-height: 32px;
}
}
}