Skip to content

Commit

Permalink
on boarding UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
assafnoahkoren committed Jan 23, 2024
1 parent f9161d9 commit 89609e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion services/client/src/view/pages/onboarding/ProfileForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const ProfileForm: FC<ProfileFormProps> = React.memo(props => {
inputProps={{ className: 'cursor-not-allowed' }}
/>
<TextField {...register('phone', { required: true })} placeholder={t('+972 52-1234-567')} fullWidth />
<Button onClick={submit} className="mt-2">
<Button onClick={submit} className="mt-2" disabled={mutation_UpdateProfile.isPending}>
Next
<i className="fas fa-arrow-right ml-2"></i>
</Button>
Expand Down
1 change: 1 addition & 0 deletions services/client/src/view/pages/onboarding/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
}
.swiper-slide:not(.swiper-slide-active) {
@apply scale-90 opacity-30;
@apply relative -z-10;
}

.swiper-pagination {
Expand Down

0 comments on commit 89609e0

Please sign in to comment.