More styling added to account page

This commit is contained in:
Lucas Patenaude
2024-04-24 20:00:06 -06:00
parent 6e33ee80ea
commit 59b76ea117
3 changed files with 42 additions and 18 deletions

View File

@@ -9,9 +9,17 @@
}
#account-header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
font-size: 32px;
border-bottom: 3px solid red;
#username {
font-size: 23px;
font-weight: 500;
}
}
#login-form-container {
@@ -19,17 +27,28 @@
flex-direction: column;
}
#favorite-teams-container {
padding: 10px;
}
.favorite-teams-card {
display: flex;
border: 1px solid black;
border-radius: 12px;
padding: 10px 90px;
align-items: center; /* Align items vertically in the center */
background-color: white;
border: 1px solid rgb(218, 218, 218);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
border-radius: 8px;
padding: 10px 20px;
margin: 10px 0;
}
.favorite-teams-card-logo-container {
img {
width: 40px;
width: 80px;
max-height: 80px;
}
}