refactor(sign): increase the size of final sign button
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 44s

This commit is contained in:
enes 2024-12-13 13:44:17 +01:00
parent 2a23912c08
commit c5724858d6
2 changed files with 8 additions and 1 deletions

View File

@ -135,7 +135,9 @@ const MarkFormField = ({
<div className={styles.actionsBottom}> <div className={styles.actionsBottom}>
<Button <Button
onClick={handleSignAndComplete} onClick={handleSignAndComplete}
className={styles.submitButton} className={[styles.submitButton, styles.completeButton].join(
' '
)}
disabled={!isReadyToSign()} disabled={!isReadyToSign()}
autoFocus autoFocus
> >

View File

@ -70,6 +70,11 @@
margin-top: 10px; margin-top: 10px;
} }
.completeButton {
font-size: 18px;
padding: 10px 20px;
}
.paginationButton { .paginationButton {
font-size: 12px; font-size: 12px;
padding: 5px 10px; padding: 5px 10px;