How to change the CSS in a card component

<pre><span><style>

[data-test="card-item"] .card-header {
color: red !important;
}

[data-test="card-item"] .card-title {
color: red !important;
}

[data-test="card-item"] .card-subtitle {
color: red !important;
}

[data-test="card-item"] .bottom-area {
background: #efede0 !important;
}

Here you go.

5 Likes