Files
klz-cables.com/.pnpm-store/v10/files/04/9b402f2ef3fc4f0ed56d99004e215105a0adc1f624978722c6a00e769eaea1a19808b29d5bba19078b3ae4e61d9b27edcdc539c5b00599319fddf8d53254d7
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

40 lines
806 B
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.multi-value {
&.rs__multi-value {
display: flex;
padding: 0;
border: 1px solid var(--theme-border-color);
border-radius: var(--style-radius-s);
line-height: calc(#{$baseline} - 2px);
margin: base(0.25) base(0.5) base(0.25) 0;
transition: border 0.2s cubic-bezier(0.2, 0, 0, 1);
&:hover {
border: 1px solid var(--theme-elevation-250);
}
}
&--is-dragging {
z-index: 2;
}
}
html[data-theme='light'] {
.multi-value {
&.rs__multi-value {
background: var(--theme-elevation-50);
}
}
}
html[data-theme='dark'] {
.multi-value {
&.rs__multi-value {
background: var(--theme-elevation-50);
}
}
}
}