Rename signup to register and center forms

This commit is contained in:
2023-09-27 00:23:28 -04:00
parent 092a38ad52
commit bea3529e22
8 changed files with 59 additions and 34 deletions

View File

@@ -6,6 +6,18 @@ html {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
display: flex;
flex-direction: column;
margin: 8px;
height: calc(100vh - 16px);
}
main#main-content {
flex-grow: 1;
margin: 0px 8px;
}
.htmx-indicator {
display: none;
}
@@ -64,7 +76,7 @@ header.header nav .auth {
footer.footer {
text-align: center;
margin-top: 64px;
margin-bottom: 16px;
margin-bottom: 8px;
}
footer.footer hr {
@@ -222,7 +234,16 @@ header.feed-header button {
margin-left: 24px;
}
/* Signup & Login */
/* Register & Login */
.center-horizontal {
width: fit-content;
margin: 0px auto;
}
.center-text {
text-align: center;
}
.auth-form-grid {
display: grid;