Files
klz-cables.com/.pnpm-store/v10/files/48/09b75271ec7d0e308f440647706ede562b765ff07d5b0c5bca655b34eb813a1c93caf7c606aaa09c6b57bca96c408f3d9d6194977200652ad97edb79e18e37
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

103 lines
1.7 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.items-drawer {
&__items-wrapper {
padding-top: base(1.5);
}
&__items {
position: relative;
padding: 0;
list-style: none;
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: base(1);
}
&__default-image {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
aspect-ratio: 3 / 2;
overflow: hidden;
img,
svg {
width: 100%;
height: 100%;
object-fit: cover;
}
}
&__item-groups {
padding: 0;
display: flex;
flex-direction: column;
gap: base(1.5);
}
&__item-group {
list-style: none;
}
&__item-group-label {
padding-bottom: base(0.5);
}
&__item-group-none {
order: 1;
padding-top: base(1.5);
border-top: 1px solid var(--theme-border-color);
&:only-child {
padding-top: 0;
border-top: 0;
}
}
@include large-break {
&__items {
grid-template-columns: repeat(5, 1fr);
}
}
@include mid-break {
&__items-wrapper {
padding-top: base(1.75);
}
&__items {
grid-template-columns: repeat(3, 1fr);
}
&__item-groups {
gap: base(1.75);
}
&__item-group-none {
padding-top: base(1.75);
}
}
@include small-break {
&__items-wrapper {
padding-top: base(0.75);
}
&__items {
grid-template-columns: repeat(2, 1fr);
}
&__item-groups {
gap: base(0.75);
}
&__item-group-none {
padding-top: base(0.75);
}
}
}
}