.success-check class

img

Sets the background color of the checkmark icon.

The following illustrations show:

  1. The .success-check style before applying CSS changes.

  2. The .success-check style after the background-color property has been changed to blie.

Default CSSModified CSS
imgimg
..success-check {
display: inline-block;
height: 80px;
width: 80px;
min-width: 80px;
border-radius: 50px;
background-color: #57d38f;
border: 1px solid #31b06a;
}
.successcheck {
display: inline-block;
height: 80px;
width: 80px;
min-width: 80px;
border-radius: 50px;
background-color: blue;
border: 1px solid #31b06a;
}