Skip to content

Commit

Permalink
Merge pull request #880 from BinaryStudioAcademy/fix/bt-876-fix-anima…
Browse files Browse the repository at this point in the history
…tion-position-and-experiance-initial-value

bt-876: fix animation position and experience initial value on onbording 1
  • Loading branch information
nikita-remeslov authored Sep 30, 2023
2 parents d837f91 + 9cb813a commit 54833fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ const AuthLayout: React.FC<Properties> = ({ children }) => {
<Grid container className={styles.container}>
<Grid item xs={GRID.xs} md={GRID.md}>
<Grid item className={styles.sellingPoint}>
<Logo className={styles.logo} hasLink />
<Grid>
<Logo className={styles.logo} hasLink />
</Grid>
<AnimatedTextBlock texts={AnimationText} />
</Grid>
</Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
position: relative;
flex-direction: column;
justify-content: space-between;
align-items: start;
height: 100%;
margin-bottom: 34px;

Expand Down Expand Up @@ -135,7 +136,7 @@
}
}

@media screen and (width >= 900px) {
@media screen and (width >=900px) {
.formWrapper :global {
.footer {
flex-direction: row;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ const ProfileStep: React.FC = () => {
location,
employmentType,
description,
experienceYears: experienceYears ?? 0,
});
}, [
description,
Expand All @@ -179,6 +180,7 @@ const ProfileStep: React.FC = () => {
profileName,
reset,
salaryExpectation,
experienceYears,
]);

const handleFormSubmit = useCallback(
Expand Down

0 comments on commit 54833fd

Please sign in to comment.