Compare commits

...

2 Commits

Author SHA1 Message Date
anielsen99
6479792acf Merge branch 'main' into landingpage 2026-03-25 18:18:21 +01:00
anielsen99
1aa09657f2 add active state to product-card 2026-03-25 18:15:50 +01:00

View File

@ -178,6 +178,8 @@
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
transition: transform 0.15s ease, border-color 0.15s ease;
}
.product-card:focus-visible {
@ -223,6 +225,11 @@
);
}
.product-card:active {
transform: scale(0.97);
border-color: #ff6a00;
}
.product-top {
position: relative;
z-index: 4;
@ -314,6 +321,16 @@
mix-blend-mode: difference;
}
.product-card:active .product-id,
.product-card:active .product-top h3,
.product-card:active .product-bottom p,
.product-card:active .arrow {
color: #ff6a00;
mix-blend-mode: normal;
transform: scale(1.02);
transition: all 0.1s ease;
}
/* DISCOVERY */
.discovery-section {
display: grid;