Files
klz-cables.com/.pnpm-store/v10/files/16/1c6bb7c9c973d12fe8fb85a563ec527deef2f05d787fa0bea2c6d325dc39a8fd3dcd3283d695e4bbe7dbaa5be2ebe17da7ba6939e67149f4ed0ee9ddc13c54
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

71 lines
1.0 KiB
Plaintext

@import '../../scss/styles';
@layer payload-default {
.collections {
display: flex;
width: 100%;
--gap: var(--base);
--cols: 5;
&__wrap {
width: 100%;
display: flex;
flex-direction: column;
gap: var(--base);
}
&__group {
display: flex;
flex-direction: column;
gap: var(--gap);
}
&__label {
margin: 0;
}
&__card-list {
padding: 0;
margin: 0;
list-style: none;
gap: 12px;
display: grid;
grid-template-columns: repeat(var(--cols), 1fr);
.card {
height: 100%;
}
}
&__locked.locked {
align-items: unset;
justify-content: unset;
}
@include large-break {
--cols: 4;
}
@include mid-break {
--gap: var(--base);
--cols: 2;
}
@include small-break {
--cols: 2;
&__wrap {
gap: var(--base);
}
&__card-list {
gap: base(0.4);
}
}
@include extra-small-break {
--cols: 1;
}
}
}