Individual cards (sections) on the user profile screens.
The following illustrations show:
- The .profile-management-card style before applying CSS changes.
- The .profile-management-card style after the background-color property has been changed to yellow.
Default CSS | Modified CSS | |
.profile-management-card { flex-grow: 1; /* flex-basis: 0; */ background-color: #fff; box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1); margin: 8px; min-width: 270px; } | .profile-management-card { flex-grow: 1; /* flex-basis: 0; */ background-color: yellow; box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1); margin: 8px; min-width: 270px; } |