diff --git a/src/components/CustomerScroll/styles.module.scss b/src/components/CustomerScroll/styles.module.scss
index 0aa7490e..235f4b01 100644
--- a/src/components/CustomerScroll/styles.module.scss
+++ b/src/components/CustomerScroll/styles.module.scss
@@ -7,13 +7,13 @@
color: #7f7f7f;
text-align: center;
text-transform: uppercase;
- margin-bottom: 30px;
}
.customer-logos {
background-image: url("../../assets/images/customer-logos.svg");
background-size: contain;
background-repeat: no-repeat;
+ background-position: center;
height: 56px;
width: 100%;
}
@@ -21,6 +21,5 @@
@media only screen and (max-height: 859px) {
.title {
font-size: 16px;
- margin-bottom: 15px;
}
}
diff --git a/src/routes/CreateNewTeam/components/InputContainer/styles.module.scss b/src/routes/CreateNewTeam/components/InputContainer/styles.module.scss
index 99cec905..a06f1bff 100644
--- a/src/routes/CreateNewTeam/components/InputContainer/styles.module.scss
+++ b/src/routes/CreateNewTeam/components/InputContainer/styles.module.scss
@@ -3,7 +3,7 @@
flex-direction: row;
justify-content: center;
align-items: flex-start;
- margin: 42px 35px;
+ margin: 42px 35px 30px;
.right-side {
display: flex;
flex-direction: column;
diff --git a/src/routes/CreateNewTeam/components/Progress/index.jsx b/src/routes/CreateNewTeam/components/Progress/index.jsx
index 06c1cebe..e2ad9427 100644
--- a/src/routes/CreateNewTeam/components/Progress/index.jsx
+++ b/src/routes/CreateNewTeam/components/Progress/index.jsx
@@ -8,54 +8,52 @@ import Button from "components/Button";
import React from "react";
import cn from "classnames";
import PT from "prop-types";
+import Spinner from "components/CenteredSpinner";
import ProgressBar from "../ProgressBar";
import "./styles.module.scss";
-import IconMultipleActionsCheck from "../../../../assets/images/icon-multiple-actions-check-2.svg";
-import IconListQuill from "../../../../assets/images/icon-list-quill.svg";
-import IconOfficeFileText from "../../../../assets/images/icon-office-file-text.svg";
-
function Progress({
extraStyleName,
isDisabled,
+ isSearching,
onClick,
buttonLabel,
stages,
percentage,
}) {
-
- let backgroundIcon
- if (extraStyleName === "input-skills") {
- backgroundIcon=
Progress
+Completeness