added hover effect
All checks were successful
Release to Staging / build_and_release (push) Successful in 46s

This commit is contained in:
freakoverse 2024-09-12 12:16:15 +00:00
parent 34b096b121
commit d13c7ca6c3

View File

@ -26,6 +26,7 @@
}
.cardBlogMainInside {
transition: ease 0.4s;
position: absolute;
top: 0;
bottom: 0;
@ -36,5 +37,10 @@
justify-content: end;
align-items: start;
padding: 15px;
background: linear-gradient(rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 50%) 100%);
}
.cardBlogMainInside:hover {
background: linear-gradient(rgb(0 0 0 / 25%) 0%, rgb(0 0 0 / 75%) 100%);
}