forked from lucaspatenaude/ScoreSpot
59 lines
1.1 KiB
CSS
59 lines
1.1 KiB
CSS
#account-pane {
|
|
display: none;
|
|
}
|
|
|
|
#account-pane-content-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
}
|
|
|
|
#account-header-container {
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px;
|
|
border-bottom: 3px solid red;
|
|
|
|
#username {
|
|
font-size: 23px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
#account-favorite-teams-container {
|
|
padding: 10px;
|
|
}
|
|
|
|
.account-favorite-teams-card {
|
|
|
|
display: flex;
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
#account-favorite-teams-card-logo {
|
|
width: 35px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#account-favorite-teams-card-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
|
|
.account-delete-favorite-team-button-container {
|
|
margin-left: auto; /* Align the container all the way to the right */
|
|
}
|
|
|
|
#account-delete-favorite-team-account-button {
|
|
width: 20px;
|
|
} |