Signing Page - New Design #152

Merged
eugene merged 29 commits from sigit-info-signing-page into staging 2024-08-20 11:29:11 +00:00
Showing only changes of commit 4c04c12403 - Show all commits

View File

@ -34,7 +34,8 @@ const MarkFormField = ({
isCurrentValueLast(currentUserMarks, selectedMark, selectedMarkValue)
const isCurrent = (currentMark: CurrentUserMark) =>
currentMark.id === selectedMark.id
const isDone = (currentMark: CurrentUserMark) => currentMark.isCompleted
const isDone = (currentMark: CurrentUserMark) =>
isCurrent(currentMark) ? !!selectedMarkValue : currentMark.isCompleted
const findNext = () => {
return (
currentUserMarks[selectedMark.id] ||
@ -50,6 +51,9 @@ const MarkFormField = ({
}
return (
<div className={styles.container}>
<div className={styles.trigger}>
<button></button>
</div>
<div className={styles.actions}>
<div className={styles.actionsWrapper}>
<div className={styles.actionsTop}>