The commit includes modification to the CSS of the verify email component and changes how form data is displayed. The form data that was previously shown in a standard div is now presented in a table format for better readability. Also, it contains minor debug changes in verify_mail.tsx to handle invalid responses.
40 lines
582 B
CSS
40 lines
582 B
CSS
/*.fields {*/
|
|
/* display: flex;*/
|
|
/* flex-direction: column;*/
|
|
/* align-items: flex-start;*/
|
|
/* max-width: 1020px;*/
|
|
/* width: 80%*/
|
|
/*}*/
|
|
|
|
/*.field {*/
|
|
/* margin-bottom: -10px*/
|
|
/*}*/
|
|
|
|
.header {
|
|
font-size: 30px;
|
|
font-weight: bolder;
|
|
margin: 30px
|
|
}
|
|
|
|
.key {
|
|
margin: 1px;
|
|
font-size: 30px;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
}
|
|
|
|
table {
|
|
width: 50%;
|
|
margin: 0 auto;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.form-data-row {
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.form-data-key,
|
|
.form-data-value {
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
} |