Files
klz-cables.com/.pnpm-store/v10/files/da/fda633ebf8ea65bfca2fdf9fb2993d4629ef050914761e85729d1ce617dc04ab5f0955a302f39a9eaee6e8de1e04de8e722302386050bfb4987bec2762006a
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

49 lines
879 B
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.live-preview-window {
background-color: var(--theme-bg);
display: none;
width: 60%;
flex-shrink: 0;
flex-grow: 0;
position: sticky;
top: var(--doc-controls-height);
height: calc(100vh - var(--doc-controls-height));
overflow: hidden;
&--is-live-previewing {
display: block;
}
&__wrapper {
display: flex;
flex-direction: column;
height: 100%;
justify-content: flex-start;
}
&__main {
flex-grow: 1;
height: 100%;
width: 100%;
}
&--has-breakpoint {
.live-preview-iframe {
border: 1px solid var(--theme-elevation-100);
}
.live-preview-window {
&__main {
padding: var(--base);
}
}
}
@include mid-break {
width: 100%;
}
}
}