.profile-management-card class

img

Individual cards (sections) on the user profile screens.

The following illustrations show:

  1. The .profile-management-card style before applying CSS changes.

  2. The .profile-management-card style after the background-color property has been changed to yellow.

Default CSSModified CSS
imgimg
.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;
}