SiteFrontend/src/components/verify_email/ThankYou.css
Teriuihi 011fb9a282 Refactor CSS and modify data display layout
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.
2024-04-28 17:59:17 +02:00

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;
}