Code fixes to make menus more unified

This commit is contained in:
Lucas Patenaude
2024-04-24 18:46:31 -06:00
parent e5ac576391
commit 77b33a0606
10 changed files with 37 additions and 18 deletions

View File

@@ -1,6 +1,7 @@
/* Standardized Styling for Login, Registration, and Account Panes */
.account-portal-container {
width: 400px;
height: 408px;
position: absolute;
top: 150px; /* Adjust this value as needed */
right: 20px; /* Adjust this value as needed */
@@ -10,7 +11,12 @@
border: 1px solid gray;
}
/* Set Login and Registration Panes to be same size */
#login-pane, #register-pane {
height: 408px;
}
/* */
.form-container {
width: 70%; /* Adjust width as needed */
margin: 0 auto; /* Center horizontally */