CSS hookups added and docker-compose compatibility changes made

This commit is contained in:
Lucas Patenaude
2024-03-12 01:56:44 -06:00
parent 44f5f49275
commit 4f08ca3be1
16 changed files with 305 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
.card-container {
margin-bottom: 35px;
}

View File

@@ -0,0 +1,19 @@
/* Styling to center login page items */
.login-page {
height: 50%;
display: flex;
justify-content: center; /* Center items horizontally */
align-items: center; /* Center items vertically */
}
.form-container {
width: 40%;
}
/* Styling to center register page items */
.register-page {
height: 50%;
display: flex;
justify-content: center; /* Center items horizontally */
align-items: center; /* Center items vertically */
}