Files
klz-cables.com/.pnpm-store/v10/files/71/6b07f4b4c3e6096e9f98c3b5ef8e60be6ec8bcbbe97d4a39ae45791034e33734c6572b45ffe3380263db5f8c579610a7d66c4d8cd89a12efb1cdae0492684c
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

54 lines
833 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.thumbnail {
&:not(.thumbnail--size-none) {
min-height: 100%;
flex-shrink: 0;
align-self: stretch;
overflow: hidden;
img,
svg {
width: 100%;
height: 100%;
object-fit: cover;
}
}
&--size-expand {
max-height: 100%;
width: 100%;
padding-top: 100%;
position: relative;
img,
svg {
position: absolute;
top: 0;
}
}
&--size-large {
max-height: base(9);
width: base(9);
}
&--size-medium {
max-height: base(7);
width: base(7);
}
&--size-small {
max-height: base(5);
width: base(5);
}
@include large-break {
.thumbnail {
width: base(5);
}
}
}
}