Skip to content

Commit

Permalink
cpg box bg fix on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
wbraden committed Aug 10, 2024
1 parent 331fcb4 commit 06f5da4
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -891,12 +891,18 @@ button {
.browse-tile:hover .overlay {
background:none;
}
/* .browse-tile:active .overlay {
background:none;
} */
/* .browse-tile:active .overlay {
background:none;
} */

.box:hover {
background-color: var(--color-background-primary);
border: 1px solid rgba(0, 0, 0, 0);
}

.cpg-card:hover {
background-color: var(--cpg-card-background-color, white); /* Default to white if not defined */
border-color: var(--cpg-card-background-color, white); /* Default to white if not defined */
color: var(--cpg-card-content-color, #000000);
}
}

0 comments on commit 06f5da4

Please sign in to comment.