Registration completed

This commit is contained in:
2024-07-30 23:25:47 +02:00
parent f2600a3012
commit edf23bdbaa
12 changed files with 191 additions and 73 deletions

View File

@@ -192,13 +192,19 @@ html.light-mode .light-block {
.input-form.input-form-wide {
width: 600px;
min-height: 300px;
justify-content: center;
align-items: stretch;
}
.input-form {
width: 400px;
min-height: 200px;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
padding: 0 2em 2em 2em;
padding: 2em 2em 2em 2em;
border: 1px solid var(--background-modifier-border);
}
@@ -209,6 +215,7 @@ html.light-mode .light-block {
}
.input-form h1 {
margin-top: 0px;
font-size: x-large;
}
@@ -253,4 +260,14 @@ html.light-mode .light-block {
.password-validation-item.validation-error {
color: var(--text-error);
}
.input-form .loading {
width: 24px;
height: 24px;
border: 4px solid var(--color-purple);
border-right-color: transparent;
border-radius: 50%;
box-sizing: content-box;
animation: rotate 1s linear infinite;
}