Files
klz-cables.com/.pnpm-store/v10/files/9d/6a704ae7848bcca5eb34f504373dd8e2a439d621c2ac0a7674c8e0a7bcf48b7f3c9840285914b7d2d42982a7ad90966e47b47196b7263472de97cdcdaeffb8
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

60 lines
994 B
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.condition {
&__wrap {
display: flex;
align-items: center;
gap: var(--base);
}
&__inputs {
display: flex;
flex-grow: 1;
align-items: center;
gap: var(--base);
> div {
flex-basis: 100%;
}
}
&__field {
.field-label {
padding-bottom: 0;
}
}
&__actions {
flex-shrink: 0;
display: flex;
gap: calc(var(--base) / 2);
padding: calc(var(--base) / 2) 0;
}
.btn {
vertical-align: middle;
margin: 0;
}
@include mid-break {
&__wrap {
align-items: initial;
gap: calc(var(--base) / 2);
}
&__inputs {
flex-direction: column;
gap: calc(var(--base) / 2);
align-items: stretch;
}
&__actions {
display: flex;
flex-direction: column;
justify-content: space-between;
}
}
}
}