item card hover

This commit is contained in:
VividTruthKeeper 2023-03-27 17:32:30 +05:00
parent d2026bc9e9
commit 354913a65a
2 changed files with 11 additions and 0 deletions

View File

@ -461,6 +461,12 @@
-ms-grid-column: 24.4rem 43.6rem 21rem;
background: #f2f2f2;
border-radius: 0.5rem;
transition: 0.3s all ease;
}
.product-block:hover {
background: #cbcbcb;
transition: 0.3s all ease;
}
.product-block:not(:last-child) {

View File

@ -12,6 +12,11 @@
grid-template-columns: 24.4rem 1fr 21rem;
}
.product-block:hover {
background: #cbcbcb;
transition: 0.3s all ease;
}
.gridded-view {
grid-template-columns: repeat(5, 1fr);
gap: 2rem;