Files
klz-cables.com/.pnpm-store/v10/files/88/6bf498307a15a539b76fe7a96b6444cbf4edb4c44e73e2e3cd6c1540f5d731a47a17bef980acc393d6a8a46cfef0d392f46eaf1fe4430d759a22be7e1d9f68
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

69 lines
1.2 KiB
Plaintext

@import '../../scss/styles';
@layer payload-default {
.live-preview {
width: 100%;
display: flex;
--gradient: linear-gradient(to left, rgba(0, 0, 0, 0.04) 0%, transparent 100%);
[dir='rtl'] & {
flex-direction: row-reverse;
}
&--popup-open {
.live-preview {
&__edit {
padding-right: var(--gutter-h);
}
}
}
&__main {
width: 40%;
display: flex;
flex-direction: column;
min-height: 100%;
position: relative;
&--popup-open {
width: 100%;
}
&::after {
content: ' ';
position: absolute;
top: 0;
right: 0;
width: calc(var(--base) * 2);
height: 100%;
background: var(--gradient);
pointer-events: none;
z-index: -1;
}
}
@include mid-break {
flex-direction: column;
&__main {
min-height: initial;
width: 100%;
&::after {
display: none;
}
}
&__form {
display: block;
}
}
}
html[data-theme='dark'] {
.live-preview {
--gradient: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
}
}