Skip to content

Commit

Permalink
Update Card.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
Massvdev authored Feb 24, 2024
1 parent 4f284e3 commit 8847aa1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ const { color, colord } = Astro.props;
}
div.brutal-card:hover {
filter: drop-shadow(5px 5px 0 rgb(0 0 0 / 1));
background-image: linear-gradient(to top left, rgb(236, 72, 153), rgb(239, 68, 68), rgb(234, 179, 8));

}
html.dark div.brutal-card:hover {
filter: drop-shadow(5px 5px 0 rgb(0 0 0 / 1));
background-image: linear-gradient(to bottom, var(--colord), rgb(3, 105, 161), rgb(190, 242, 100));
}
</style>

Expand Down

0 comments on commit 8847aa1

Please sign in to comment.