Compare commits
No commits in common. "51ae926a2f066b4e973107de8950c667c628ce56" and "81d2ee409817037f780ab487d94bc0b5b6eed4a1" have entirely different histories.
51ae926a2f
...
81d2ee4098
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
@ -5,6 +5,7 @@ import "./modalSelect.scss";
|
|||||||
export const ModalSelect = ({ active, children }) => {
|
export const ModalSelect = ({ active, children }) => {
|
||||||
return (
|
return (
|
||||||
<div className={active ? "project__settings active" : "project__settings "}>
|
<div className={active ? "project__settings active" : "project__settings "}>
|
||||||
|
<span className="project__settings-ellipsis">...</span>
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -1,30 +1,29 @@
|
|||||||
.project {
|
.project {
|
||||||
&__settings {
|
&__settings {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 0 10px;
|
padding: 32px 23px 10px 11px;
|
||||||
background: #e1fccf;
|
background: #e1fccf;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
transform: scale(0);
|
transform: scale(0);
|
||||||
bottom: -30px;
|
bottom: -40px;
|
||||||
right: -130px;
|
right: -120px;
|
||||||
|
|
||||||
@media (max-width: 1050px) {
|
@media (max-width: 1050px) {
|
||||||
right: 5px;
|
right: 10px;
|
||||||
bottom: -30px;
|
padding-top: 10px;
|
||||||
|
bottom: -75px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-menu {
|
&-menu {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
padding: 5px 0;
|
line-height: 38px;
|
||||||
|
|
||||||
div {
|
div {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 2px 0;
|
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 12px;
|
margin-right: 12px;
|
||||||
margin-right: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p:hover {
|
p:hover {
|
||||||
|
@ -109,7 +109,7 @@ export const ProjectTicket = ({ project, index }) => {
|
|||||||
to={`/profile/statistics/${project.id}`}
|
to={`/profile/statistics/${project.id}`}
|
||||||
className="project__statistics"
|
className="project__statistics"
|
||||||
>
|
>
|
||||||
Посмотреть статистику
|
Просмотреть статистику
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<TrackerModal
|
<TrackerModal
|
||||||
@ -133,7 +133,7 @@ export const ProjectTicket = ({ project, index }) => {
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<img src={link}></img>
|
<img src={link}></img>
|
||||||
<p onClick={copyProjectLink(project.id)}>скопировать ссылку</p>
|
<p onClick={copyProjectLink(project.id)}>ссылка на проект</p>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
@ -80,8 +80,8 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: 21px;
|
font-size: 21px;
|
||||||
color: #6f6f6f;
|
color: #6f6f6f;
|
||||||
right: 15px;
|
right: 26px;
|
||||||
top: 0px;
|
top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__avatar {
|
&__avatar {
|
||||||
|
@ -301,7 +301,7 @@ const ReportForm = () => {
|
|||||||
className="report-form__footer-btn"
|
className="report-form__footer-btn"
|
||||||
onClick={() => handler()}
|
onClick={() => handler()}
|
||||||
>
|
>
|
||||||
Отправить
|
Отпаравить
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
<p className="report-form__footer-text">
|
<p className="report-form__footer-text">
|
||||||
|
@ -6,7 +6,7 @@ const StarRating = ({
|
|||||||
countStars = 1,
|
countStars = 1,
|
||||||
countActiveStars = 1,
|
countActiveStars = 1,
|
||||||
color = "#52B709",
|
color = "#52B709",
|
||||||
size = 40
|
size = 61
|
||||||
}) => {
|
}) => {
|
||||||
const [shadedStars, setShadedStars] = useState([]);
|
const [shadedStars, setShadedStars] = useState([]);
|
||||||
const [noShadedStars, setNoShadedStars] = useState([]);
|
const [noShadedStars, setNoShadedStars] = useState([]);
|
||||||
|
@ -17,14 +17,14 @@ export const AlertResult = ({ info }) => {
|
|||||||
className="alert-result__text"
|
className="alert-result__text"
|
||||||
style={{ color: successTest ? "#52B709" : "#5B6871" }}
|
style={{ color: successTest ? "#52B709" : "#5B6871" }}
|
||||||
>
|
>
|
||||||
Благодарим Вас за прохождение теста "{info.questionnaire_title}".
|
Благодарим Вас за прохождение теста "{info.questionnaire_title}". Ваши
|
||||||
Ваши результаты проверены, готовы пригласить Вас в команду
|
результаты проверены, готовы пригласить Вас в команду
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{!successTest && (
|
{!successTest && (
|
||||||
<div className="alert-result__column">
|
<div className="alert-result__column">
|
||||||
<button className="alert-result__button quiz-btn">
|
<button className="alert-result__button quiz-btn">
|
||||||
Запросить пересдачу
|
Запросить еще попытку
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
@ -35,7 +35,7 @@ export const QuizReport = ({ info }) => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="report__column">
|
<div className="report__column">
|
||||||
<div className="report__status-text">Статус:</div>
|
<div className="report__status-text">Статус:</div>
|
||||||
<div className="report__status">Пройден!</div>
|
<div className="report__status">Пройдено!</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,14 +31,16 @@ $maxWidthContainer: 1123;
|
|||||||
}
|
}
|
||||||
.quiz-btn {
|
.quiz-btn {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
font-family: "Lab Grotesque";
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
box-shadow: 6px 5px 20px rgba(82, 151, 34, 0.21);
|
// box-shadow: 6px 5px 20px rgba(82, 151, 34, 0.21);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
background: #406128;
|
background: #406128;
|
||||||
border-radius: 44px;
|
border-radius: 44px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
//border: 2px solid #52b709;
|
||||||
border: none;
|
border: none;
|
||||||
transition: 0 all ease 0.8s;
|
transition: 0 all ease 0.8s;
|
||||||
padding: 7px 51px;
|
padding: 7px 51px;
|
||||||
@ -46,6 +48,11 @@ $maxWidthContainer: 1123;
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
line-height: 200%;
|
line-height: 200%;
|
||||||
|
// &:hover{
|
||||||
|
// text-decoration: none;
|
||||||
|
// color: #52b709;
|
||||||
|
// background: #fff;
|
||||||
|
// }
|
||||||
&_back {
|
&_back {
|
||||||
background: #dddddd;
|
background: #dddddd;
|
||||||
color: #000;
|
color: #000;
|
||||||
@ -61,11 +68,13 @@ $maxWidthContainer: 1123;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.quiz-title_h3 {
|
.quiz-title_h3 {
|
||||||
|
font-family: "Lab Grotesque";
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 156%;
|
line-height: 156%;
|
||||||
color: #52b709;
|
color: #52b709;
|
||||||
}
|
}
|
||||||
|
//=============================================
|
||||||
|
|
||||||
.error-msg {
|
.error-msg {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -131,6 +140,7 @@ $maxWidthContainer: 1123;
|
|||||||
.form-task__group {
|
.form-task__group {
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 13px;
|
margin-bottom: 13px;
|
||||||
|
font-family: "Lab Grotesque";
|
||||||
label {
|
label {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
@ -302,9 +312,9 @@ $maxWidthContainer: 1123;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.card-introduction {
|
.card-introduction {
|
||||||
padding: 0px 20px;
|
padding: 0px 25px;
|
||||||
margin: 0px 0px 50px 0px;
|
margin: 0px 0px 50px 0px;
|
||||||
flex: 0 1 33%;
|
flex: 0 1 33.333%;
|
||||||
@media (max-width: 850px) {
|
@media (max-width: 850px) {
|
||||||
flex: 0 1 50%;
|
flex: 0 1 50%;
|
||||||
}
|
}
|
||||||
@ -314,13 +324,14 @@ $maxWidthContainer: 1123;
|
|||||||
|
|
||||||
&__body {
|
&__body {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 20px;
|
||||||
}
|
}
|
||||||
&__title {
|
&__title {
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
font-size: 18px;
|
font-size: 14px;
|
||||||
|
line-height: 171%;
|
||||||
color: #52b709;
|
color: #52b709;
|
||||||
margin-bottom: 10px;
|
margin: 0 0 30px 0;
|
||||||
}
|
}
|
||||||
&__icon {
|
&__icon {
|
||||||
flex: 0 0 25px;
|
flex: 0 0 25px;
|
||||||
@ -332,8 +343,8 @@ $maxWidthContainer: 1123;
|
|||||||
}
|
}
|
||||||
&__text {
|
&__text {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 15px;
|
font-size: 12px;
|
||||||
line-height: 20px;
|
line-height: 200%;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -341,8 +352,20 @@ $maxWidthContainer: 1123;
|
|||||||
.quiz-passing-information {
|
.quiz-passing-information {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
|
&__container {
|
||||||
|
// @media (max-width: 600px) {
|
||||||
|
// display: block;
|
||||||
|
// }
|
||||||
|
// @media (max-width: 600px) {
|
||||||
|
// display: block;
|
||||||
|
// }
|
||||||
|
// @media (max-width: 600px) {
|
||||||
|
// display: block;
|
||||||
|
// }
|
||||||
|
}
|
||||||
&__main {
|
&__main {
|
||||||
padding: 30px;
|
//flex: 1 1 auto;
|
||||||
|
padding: 35px 45px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1.2fr 1.2fr 0.6fr;
|
grid-template-columns: 1fr 1.2fr 1.2fr 0.6fr;
|
||||||
@ -365,7 +388,7 @@ $maxWidthContainer: 1123;
|
|||||||
}
|
}
|
||||||
&__text {
|
&__text {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 12px;
|
||||||
line-height: 167%;
|
line-height: 167%;
|
||||||
color: #6f6f6f;
|
color: #6f6f6f;
|
||||||
span {
|
span {
|
||||||
@ -376,7 +399,7 @@ $maxWidthContainer: 1123;
|
|||||||
&__timer,
|
&__timer,
|
||||||
&__attempt {
|
&__attempt {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 23px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -425,10 +448,10 @@ $maxWidthContainer: 1123;
|
|||||||
|
|
||||||
&__container {
|
&__container {
|
||||||
display: block;
|
display: block;
|
||||||
@include adaptiv-value("padding-top", 15, 15, 1);
|
@include adaptiv-value("padding-top", 30, 20, 1);
|
||||||
@include adaptiv-value("padding-bottom", 15, 15, 1);
|
@include adaptiv-value("padding-bottom", 30, 20, 1);
|
||||||
@include adaptiv-value("padding-right", 15, 15, 1);
|
@include adaptiv-value("padding-right", 28, 18, 1);
|
||||||
@include adaptiv-value("padding-left", 15, 15, 1);
|
@include adaptiv-value("padding-left", 28, 18, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@ -440,8 +463,8 @@ $maxWidthContainer: 1123;
|
|||||||
&__top-head {
|
&__top-head {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: 19px;
|
||||||
margin-bottom: 15px;
|
margin: 0 0 24px 0;
|
||||||
}
|
}
|
||||||
&__title {
|
&__title {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@ -459,8 +482,9 @@ $maxWidthContainer: 1123;
|
|||||||
|
|
||||||
p {
|
p {
|
||||||
flex: 0 1 66%;
|
flex: 0 1 66%;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 13px;
|
font-size: 12px;
|
||||||
|
line-height: 20px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
@ -484,7 +508,7 @@ $maxWidthContainer: 1123;
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 13px 16px;
|
padding: 13px 16px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0px;
|
bottom: 20px;
|
||||||
left: 0;
|
left: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -493,7 +517,8 @@ $maxWidthContainer: 1123;
|
|||||||
gap: 10px;
|
gap: 10px;
|
||||||
p {
|
p {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
|
line-height: 129%;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
@ -552,20 +577,27 @@ $maxWidthContainer: 1123;
|
|||||||
color: #52b709;
|
color: #52b709;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .block-completed-test__text
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
max-width: 386px;
|
max-width: 386px;
|
||||||
margin: 0 26px 0 0;
|
margin: 0 26px 0 0;
|
||||||
font-weight: 500;
|
font-weight: 400;
|
||||||
font-size: 13px;
|
font-size: 12px;
|
||||||
|
line-height: 200%;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .block-completed-test__button
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.report {
|
.report {
|
||||||
|
// .report__row
|
||||||
|
|
||||||
&__row {
|
&__row {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -577,37 +609,36 @@ $maxWidthContainer: 1123;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .report__column
|
||||||
|
|
||||||
&__column {
|
&__column {
|
||||||
&:first-child {
|
&:first-child {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
flex: 0 1 22%;
|
flex: 0 1 22%;
|
||||||
border-radius: 12px 0 0 12px;
|
border-radius: 12px;
|
||||||
@media (max-width: 1000px) {
|
@media (max-width: 1000px) {
|
||||||
flex: 0 1 50%;
|
flex: 0 1 50%;
|
||||||
}
|
}
|
||||||
@media (max-width: 600px) {
|
|
||||||
border-radius: 12px 12px 0 0;
|
|
||||||
}
|
}
|
||||||
}
|
height: 128px;
|
||||||
height: 90px;
|
border-radius: 0px 12px 0px 0px;
|
||||||
flex: 0 1 26%;
|
flex: 0 1 26%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: #e1fccf;
|
background: #e1fccf;
|
||||||
gap: 10px;
|
gap: 21px;
|
||||||
&:last-child {
|
&:last-child {
|
||||||
border-radius: 0 12px 12px 0;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 0;
|
||||||
|
}
|
||||||
@media (max-width: 1000px) {
|
@media (max-width: 1000px) {
|
||||||
flex: 0 1 50%;
|
flex: 0 1 50%;
|
||||||
}
|
}
|
||||||
@media (max-width: 600px) {
|
|
||||||
border-radius: 0 0 12px 12px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .report__job-title
|
||||||
|
|
||||||
&__job-title {
|
&__job-title {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
@ -615,17 +646,22 @@ $maxWidthContainer: 1123;
|
|||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .report__value
|
||||||
|
|
||||||
&__value {
|
&__value {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 52px;
|
font-size: 52px;
|
||||||
line-height: 56%;
|
line-height: 56%;
|
||||||
color: #52b709;
|
color: #52b709;
|
||||||
|
// .report__value_false
|
||||||
|
|
||||||
&_false {
|
&_false {
|
||||||
color: #5b6871;
|
color: #5b6871;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .report__text
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@ -633,20 +669,26 @@ $maxWidthContainer: 1123;
|
|||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .report__status-text
|
||||||
|
|
||||||
&__status-text {
|
&__status-text {
|
||||||
font-weight: 500;
|
font-weight: 400;
|
||||||
font-size: 15px;
|
font-size: 12px;
|
||||||
|
line-height: 200%;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .report__status
|
||||||
|
|
||||||
&__status {
|
&__status {
|
||||||
background: #1458dd;
|
background: #1458dd;
|
||||||
border-radius: 5px;
|
border-radius: 44px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 200%;
|
line-height: 200%;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
padding: 7px 14px;
|
padding: 7px 34px;
|
||||||
max-width: 154px;
|
max-width: 154px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -654,19 +696,19 @@ $maxWidthContainer: 1123;
|
|||||||
.alert-result {
|
.alert-result {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@include adaptiv-value("padding-top", 20, 20, 1);
|
@include adaptiv-value("padding-top", 39, 20, 1);
|
||||||
@include adaptiv-value("padding-bottom", 20, 20, 1);
|
@include adaptiv-value("padding-bottom", 39, 20, 1);
|
||||||
@include adaptiv-value("padding-right", 20, 20, 1);
|
@include adaptiv-value("padding-right", 61, 20, 1);
|
||||||
@include adaptiv-value("padding-left", 20, 20, 1);
|
@include adaptiv-value("padding-left", 61, 20, 1);
|
||||||
background: #fff;
|
background: #fff;
|
||||||
gap: 10px;
|
gap: 30px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
&__column {
|
&__column {
|
||||||
display: flex;
|
display: flex;
|
||||||
@include adaptiv-value("gap", 20, 20, 1);
|
@include adaptiv-value("gap", 44, 14, 1);
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
|
@ -70,7 +70,7 @@ export const ProfileCandidate = () => {
|
|||||||
<div className="profile-candidate__instructions instructions-candidate">
|
<div className="profile-candidate__instructions instructions-candidate">
|
||||||
<div className="instructions-candidate__container">
|
<div className="instructions-candidate__container">
|
||||||
<div className="instructions-candidate___row">
|
<div className="instructions-candidate___row">
|
||||||
<div className="instructions-candidate__title">Инструкция:</div>
|
<div className="instructions-candidate__title">Интсрукция:</div>
|
||||||
<div className="instructions-candidate__note">
|
<div className="instructions-candidate__note">
|
||||||
<img
|
<img
|
||||||
className="instructions-candidate__icon"
|
className="instructions-candidate__icon"
|
||||||
@ -93,7 +93,7 @@ export const ProfileCandidate = () => {
|
|||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
<div className="instructions-candidate__text">
|
<div className="instructions-candidate__text">
|
||||||
Тесты ITguild предназначены для того, чтобы подтверждать
|
Тесты itguild предназначены для того, чтобы подтверждать
|
||||||
навыки, которые вы указали у себя.
|
навыки, которые вы указали у себя.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -10,6 +10,7 @@ import { Footer } from "@components/Common/Footer/Footer";
|
|||||||
import { Navigation } from "@components/Navigation/Navigation";
|
import { Navigation } from "@components/Navigation/Navigation";
|
||||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||||
|
// import { HeadBottom } from "@components/features/Candidate-lk/HeadBottom";
|
||||||
import { BlockCompletedTest } from "@components/features/quiz/BlockCompletedTest";
|
import { BlockCompletedTest } from "@components/features/quiz/BlockCompletedTest";
|
||||||
import { CardIntroduction } from "@components/features/quiz/Card-introduction";
|
import { CardIntroduction } from "@components/features/quiz/Card-introduction";
|
||||||
import { QuizPassingInformation } from "@components/features/quiz/Quiz-passing-information";
|
import { QuizPassingInformation } from "@components/features/quiz/Quiz-passing-information";
|
||||||
@ -42,12 +43,12 @@ export const PassingTests = () => {
|
|||||||
{
|
{
|
||||||
title: "Зачем?",
|
title: "Зачем?",
|
||||||
description:
|
description:
|
||||||
"Тесты ITguild предназначены для того, чтобы подтверждать навыки, которые вы указали у себя."
|
"Тесты itguild предназначены для того, чтобы подтверждать навыки, которые вы указали у себя."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Почему именно тестирование?",
|
title: "Почему именно тестирование?",
|
||||||
description:
|
description:
|
||||||
"Тесты ITguild заменяют первое техническое собеседование по любой вакансии."
|
"Тесты itguild заменяют первое техническое собеседование по любой вакансии."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Какие тесты нужно проходить?",
|
title: "Какие тесты нужно проходить?",
|
||||||
@ -137,6 +138,11 @@ export const PassingTests = () => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
|
{/*<Prompt*/}
|
||||||
|
{/* when={showPrompt}*/}
|
||||||
|
{/* message="Unsaved changes detected, continue?"*/}
|
||||||
|
{/* beforeUnload={true}*/}
|
||||||
|
{/*/>*/}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -17,12 +17,12 @@
|
|||||||
}
|
}
|
||||||
&__block {
|
&__block {
|
||||||
background: #e1fccf;
|
background: #e1fccf;
|
||||||
border-radius: 12px;
|
border-radius: 12px 12px 0px 0px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 23px;
|
font-size: 18px;
|
||||||
line-height: 178%;
|
line-height: 178%;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
padding: 20px;
|
padding: 20px 51px;
|
||||||
margin: 0 0 16px 0;
|
margin: 0 0 16px 0;
|
||||||
}
|
}
|
||||||
&__cards-test {
|
&__cards-test {
|
||||||
|
@ -33,7 +33,7 @@ import project from "assets/icons/trackerProject.svg";
|
|||||||
import tasks from "assets/icons/trackerTasks.svg";
|
import tasks from "assets/icons/trackerTasks.svg";
|
||||||
import archive from "assets/images/archiveIcon.png";
|
import archive from "assets/images/archiveIcon.png";
|
||||||
import mockAvatar from "assets/images/avatarMok.png";
|
import mockAvatar from "assets/images/avatarMok.png";
|
||||||
import downloadExcel from "assets/images/downloadExcel.svg";
|
import downloadExel from "assets/images/downloadExel.svg";
|
||||||
import noProjects from "assets/images/noProjects.png";
|
import noProjects from "assets/images/noProjects.png";
|
||||||
import statusTimeTask from "assets/images/statusTimeTask.svg";
|
import statusTimeTask from "assets/images/statusTimeTask.svg";
|
||||||
|
|
||||||
@ -305,8 +305,8 @@ export const Tracker = () => {
|
|||||||
<p>Сверка пройдена</p>
|
<p>Сверка пройдена</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<img src={downloadExcel} alt="#" />
|
<img src={downloadExel} alt="#" />
|
||||||
<p>Скачать Excel-отчет</p>
|
<p>Скачать Exel отчет</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user