.success-check class
Sets the background color of the checkmark icon.
The following illustrations show:
-
The .success-check style before applying CSS changes.
-
The .success-check style after the background-color property has been changed to blie.
| Default CSS | Modified CSS |
|---|---|
![]() | ![]() |
| ..success-check {<br> display: inline-block;<br> height: 80px;<br> width: 80px;<br> min-width: 80px;<br> border-radius: 50px;<br> background-color: #57d38f;<br> border: 1px solid #31b06a; <br>} | .successcheck {<br> display: inline-block;<br> height: 80px;<br> width: 80px;<br> min-width: 80px;<br> border-radius: 50px;<br> background-color: blue;<br> border: 1px solid #31b06a;<br>} |
Updated 19 days ago


