Files
klz-cables.com/.pnpm-store/v10/files/8c/6a5f20e09768afc89ed553a9c9a370771f915ae2dca460b1a95e0c3bf8cf107c22baf306d1aa67a9c113a16b2f07cde07a046c86a18a99e5dfb9b9a5de9210
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

62 lines
1.1 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.collection-edit {
--gradient: linear-gradient(to left, rgba(0, 0, 0, 0.04) 0%, transparent 100%);
&__main-wrapper {
width: 100%;
display: flex;
}
&__main {
width: 100%;
container-type: inline-size;
&--popup-open {
width: 100%;
}
&--is-live-previewing {
width: 40%;
position: relative;
&::after {
content: ' ';
position: absolute;
top: 0;
right: 0;
width: calc(var(--base) * 2);
height: 100%;
background: var(--gradient);
pointer-events: none;
z-index: -1;
}
}
}
&__form {
height: 100%;
width: 100%;
}
&__auth {
margin-bottom: base(1.6);
border-radius: var(--style-radius-s);
}
@include small-break {
&__auth {
margin-top: 0;
margin-bottom: var(--base);
}
}
}
html[data-theme='dark'] {
.collection-edit {
--gradient: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
}
}