Individual cards found on the Privacy Settings screen.
The following illustrations show:
- The .action-card style before applying CSS changes.
- The .action-card style after the background-color property has been changed to peachpuff.
Default CSS | Modified CSS | |
.action-card { flex-grow: 1; flex-basis: 0; margin: 8px; background-color: #f2f2f2; padding: 0 20px 20px 20px; } | .action-card { flex-grow: 1; flex-basis: 0; margin: 8px; background-color: peachpuff; padding: 0 20px 20px 20px; } |