Skip to content

Commit 032d7ad

Browse files
committed
color fix
1 parent 293d24e commit 032d7ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Cards/CardItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ function CardItem(props) {
2828
<div className="card-body pt-0">
2929
<button
3030
className={`btn btn-${props.card.completed ? "success" : "danger"} p-0`}
31-
style={{ width: "1.8em", height: "1.8em", float: "right", borderColor: "transparent" }}
31+
style={{ width: "1.8em", height: "1.8em", float: "right", borderColor: "transparent", backgroundColor: "transparent" }}
3232
onClick={() => removeCard(props.index)}
3333
>
3434
&#10007;
3535
</button>
3636
<button
3737
className={`btn btn-${props.card.completed ? "success" : "danger"} p-0 mx-2`}
38-
style={{ width: "1.8em", height: "1.8em", float: "right", borderColor: "transparent" }}
38+
style={{ width: "1.8em", height: "1.8em", float: "right", borderColor: "transparent", backgroundColor: "transparent" }}
3939
onClick={() => changeCardState(props.index)}
4040
>
4141
&#10003;

0 commit comments

Comments
 (0)